Fix map spawn

Fix map failing to spawn in some cases.
This commit is contained in:
ronancpl
2017-04-06 10:07:14 -03:00
parent 7863994a13
commit 67af338f8a
18 changed files with 155 additions and 50 deletions

View File

@@ -41,9 +41,12 @@ if (mode == 0 && status == 1) {
status++;
else
cm.dispose();
if (status == 1)
if (status == 1) {
cm.sendNext ("Alright, see you next time. Take care.");
else if (status == 2)
}
else if (status == 2) {
cm.warp(200000111, 0);// back to Orbis jetty
cm.dispose();
cm.dispose();
}
}