diff options
-rw-r--r-- | npc/009-8/gambler.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/009-8/gambler.txt b/npc/009-8/gambler.txt index 77dc59167..9a6eaa176 100644 --- a/npc/009-8/gambler.txt +++ b/npc/009-8/gambler.txt @@ -91,7 +91,7 @@ L_Spin: // Check if you won your bet if ((.@result && !.@lose) || (!.@result && .@lose)) { - mesc l("I guess you guessed correctly!"); + mesc b(l("I guess you guessed correctly!")); Zeny += 70; @craps_winstreak += 1; // Streak reward @@ -107,7 +107,7 @@ L_Spin: goto L_Spin; goto L_Quit; } else { - mesc l("Luck wasn't on your side today!"); + mesc b(l("Luck wasn't on your side today!")), 1; @craps_winstreak = 0; } dnext; |