Fix Witch Tower warp point (#355)

This commit is contained in:
MedicOP
2019-01-22 23:19:38 +01:00
committed by Ronan Lana
parent 1eb7a6b497
commit 190a601d6d

View File

@@ -55,7 +55,7 @@ function action(mode, type, selection) {
if(stage == 0) { if(stage == 0) {
cm.sendOk("It looks like the Tower isn't unlocked yet. Please wait for a GM to unlock it!"); cm.sendOk("It looks like the Tower isn't unlocked yet. Please wait for a GM to unlock it!");
} else { } else {
cm.warp(980040000 + stage * 1000); cm.warp(980040000 + stage * 1000, 0);
} }
cm.dispose(); cm.dispose();
} }
@@ -65,7 +65,7 @@ function action(mode, type, selection) {
if(stage == 0) { if(stage == 0) {
cm.sendOk("It looks like the Tower isn't unlocked yet. Please wait for a GM to unlock it!"); cm.sendOk("It looks like the Tower isn't unlocked yet. Please wait for a GM to unlock it!");
} else { } else {
cm.warp(980040000 + stage * 1000); cm.warp(980040000 + stage * 1000, 0);
} }
cm.dispose(); cm.dispose();
return; return;