diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2010-12-17 10:43:16 +0100 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2010-12-17 10:43:16 +0100 |
commit | 9a1500fe53f61513fcc343180717ca79ed62e2e8 (patch) | |
tree | 691cb97a094ac097150ac4abae90526bcf6c483d /npc/xmas | |
parent | b8bf1ed5feb92dfb4498cdd91f73833f096c1e05 (diff) | |
download | serverdata-9a1500fe53f61513fcc343180717ca79ed62e2e8.tar.gz serverdata-9a1500fe53f61513fcc343180717ca79ed62e2e8.tar.bz2 serverdata-9a1500fe53f61513fcc343180717ca79ed62e2e8.tar.xz serverdata-9a1500fe53f61513fcc343180717ca79ed62e2e8.zip |
fixed a line in reward calculation
Diffstat (limited to 'npc/xmas')
-rwxr-xr-x | npc/xmas/2010/santa.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/xmas/2010/santa.txt b/npc/xmas/2010/santa.txt index 5e93a6d5..2b2870c1 100755 --- a/npc/xmas/2010/santa.txt +++ b/npc/xmas/2010/santa.txt @@ -47,7 +47,7 @@ L_Calculate_Prizes: getinventorylist; if (@inventorylist_count == 100) goto L_full; if (Golbenez_Inn_Cost >= 5000000) goto L_Elfhat_Prize; - if (Golbenez_Inn_Cost >= 500000 && Golbenez_Inn_Cost < 5000000) goto L_Stocking_Prize; + if (Golbenez_Inn_Cost < 500000) goto L_Stocking_Prize; setarray @prizes[1], 1206, 1216, 629, 630, 634, 1214, 633, 628, 627, 621; setarray @prizesnames$[1], "Santa Beard Hat", "Mouboo Head", "Mush Hat", "Shroom Hat", "Face Mask", "Bunny Ears", "Christmas Elf Hat", "Funky Hat", "Top Hat", "Eyepatch"; mes "\"You are so generous! I believe I can give you one of the hats from this bag. I know you like these silly hats. Yes, Santa knows this kind of thing... Ho-Ho-Ho! Which one would you like to get?\""; |