Skip to content
Permalink
Browse files
Corrected Dual Monster Race wager check (#4342)
* Fixes #4338.
* Follow up to f73fa23.
* Dual Monster Race wager should apply if either of the monsters chosen win in any order.
Thanks to @Indigo000!
  • Loading branch information
aleos89 committed Oct 16, 2019
1 parent e02ed40 commit 9da3ad141c4159a4ad1431dd664645469974f9c3
Showing with 1 addition and 1 deletion.
  1. +1 −1 npc/other/monster_race.txt
@@ -1578,7 +1578,7 @@ p_track02,67,45,5 script Medal Distributor#medal 845,{
mes "Medals may be given to Wayne";
mes "in Hugel in exchange for items.";
next;
if (monster_race_2_1 == $@mon_race_2_1 && monster_race_2_2 == $@mon_race_2_2) {
if ((monster_race_2_1 == $@mon_race_2_1 && monster_race_2_2 == $@mon_race_2_2) || (monster_race_2_1 == $@mon_race_2_2 && monster_race_2_2 == $@mon_race_2_1)) {
mes "[Medal Distributor]";
mes "Congratulations! It's really";
mes "difficult to guess the winners";

0 comments on commit 9da3ad1

Please sign in to comment.