Fix loop issue on Ice Cream Maker NPC (#4127)
* Fixed infinity loop issue if user input any number except 0.
This commit is contained in:
parent
3d8c20f6b9
commit
67e1583f9f
@ -36,7 +36,7 @@
|
||||
mes "but we have a limited amount,";
|
||||
mes "so you can only purchase 5 at a time!!";
|
||||
next;
|
||||
while(1) {
|
||||
while(true) {
|
||||
input .@input;
|
||||
if(.@input < 1) {
|
||||
mes "[Ice Cream Maker]";
|
||||
@ -55,7 +55,9 @@
|
||||
mes "If you might haveto make a lot of trips";
|
||||
mes "to the bathroom tonight.";
|
||||
next;
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
}
|
||||
if(Zeny<.@input*100) {
|
||||
mes "[Ice Cream Maker]";
|
||||
|
Loading…
x
Reference in New Issue
Block a user