Skip to content

Commit 4be952b

Browse files
committed
Updated UDLWindows
1 parent f0996f2 commit 4be952b

File tree

3 files changed

+29
-30
lines changed

3 files changed

+29
-30
lines changed

UDLWindows/0.1.2/UDLWindows.js

+14-12
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const UDLWindows = (() => { // eslint-disable-line no-unused-vars
1111
const scriptName = 'UDLWindows';
1212
const version = '0.1.2';
1313
API_Meta.UDLWindows.version = version;
14-
const lastUpdate = 1616861563;
14+
const lastUpdate = 1616872594;
1515
const schemaVersion = 0.1;
1616

1717
const assureHelpHandout = (create = false) => {
@@ -212,17 +212,19 @@ const UDLWindows = (() => { // eslint-disable-line no-unused-vars
212212

213213
let count = oldWindows.length;
214214

215-
const burndown = ()=>{
216-
let p = oldWindows.shift();
217-
if(p){
218-
convertToWindowPath(p);
219-
setTimeout(burndown,0);
220-
} else {
221-
sendChat('UDLWindows',`/w gm <div><b>Converted <code>${count}</code> legacy windows to new representation.`);
222-
}
223-
224-
};
225-
burndown();
215+
if(count) {
216+
const burndown = ()=>{
217+
let p = oldWindows.shift();
218+
if(p){
219+
convertToWindowPath(p);
220+
setTimeout(burndown,0);
221+
} else {
222+
sendChat('UDLWindows',`/w gm <div><b>Converted <code>${count}</code> legacy windows to new representation.`);
223+
}
224+
225+
};
226+
burndown();
227+
}
226228
};
227229

228230
const isCirclePath = (p) => {

UDLWindows/UDLWindows.js

+14-12
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const UDLWindows = (() => { // eslint-disable-line no-unused-vars
1111
const scriptName = 'UDLWindows';
1212
const version = '0.1.2';
1313
API_Meta.UDLWindows.version = version;
14-
const lastUpdate = 1616861563;
14+
const lastUpdate = 1616872594;
1515
const schemaVersion = 0.1;
1616

1717
const assureHelpHandout = (create = false) => {
@@ -212,17 +212,19 @@ const UDLWindows = (() => { // eslint-disable-line no-unused-vars
212212

213213
let count = oldWindows.length;
214214

215-
const burndown = ()=>{
216-
let p = oldWindows.shift();
217-
if(p){
218-
convertToWindowPath(p);
219-
setTimeout(burndown,0);
220-
} else {
221-
sendChat('UDLWindows',`/w gm <div><b>Converted <code>${count}</code> legacy windows to new representation.`);
222-
}
223-
224-
};
225-
burndown();
215+
if(count) {
216+
const burndown = ()=>{
217+
let p = oldWindows.shift();
218+
if(p){
219+
convertToWindowPath(p);
220+
setTimeout(burndown,0);
221+
} else {
222+
sendChat('UDLWindows',`/w gm <div><b>Converted <code>${count}</code> legacy windows to new representation.`);
223+
}
224+
225+
};
226+
burndown();
227+
}
226228
};
227229

228230
const isCirclePath = (p) => {

UDLWindows/script.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,5 @@
1111
"modifies": {
1212
"state.UDLWindows": "read,write"
1313
},
14-
"conflicts": [],
15-
"previousversions": [
16-
"0.1.0",
17-
"0.1.1",
18-
"0.1.2"
19-
]
14+
"conflicts": []
2015
}

0 commit comments

Comments
 (0)