diff options
Diffstat (limited to 'npc/guild')
-rw-r--r-- | npc/guild/gldfunc_treasure.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/guild/gldfunc_treasure.txt b/npc/guild/gldfunc_treasure.txt index 74126d42d..a829ae7a1 100644 --- a/npc/guild/gldfunc_treasure.txt +++ b/npc/guild/gldfunc_treasure.txt @@ -61,7 +61,7 @@ function script F_GldTreas { set getarg(3), getarg(2); //sets the counter variable = to the box number amount L_SPAWN: - set getarg(4), getarg(5)+(getarg(3)+1) & 1); //sets the box id variable = to the box id + set getarg(4), getarg(5)+((getarg(3)+1) & 1); //sets the box id variable = to the box id areamonster getarg(0),getarg(6),getarg(7),getarg(8),getarg(9),"Treasure Chest",getarg(4),1,"Treasure_"+getarg(1)+"::OnDied"; set getarg(3), getarg(3) - 1; if(getarg(3) > 0) goto L_SPAWN; |