Fixed the 'no' option not working (#167)

This commit is contained in:
Tyler Hasman
2018-02-22 20:34:21 +09:00
committed by Ronan Lana
parent a4973b8254
commit eb4d3d4762

View File

@@ -39,8 +39,10 @@ function start() {
function action(mode, type, selection) { function action(mode, type, selection) {
status++; status++;
if (mode == -1){ if (mode == -1){
if(mode == 0) cm.dispose();
cm.sendNext("This town also has a lot to offer. Find us if and when you feel the need to go to the Ant Tunnel Park."); return;
}else if(mode == 0) {
cm.sendOk("This town also has a lot to offer. Find us if and when you feel the need to go to the Ant Tunnel Park.");
cm.dispose(); cm.dispose();
return; return;
} }