summaryrefslogtreecommitdiff
path: root/npc/003-2/lua.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-2/lua.txt')
-rw-r--r--npc/003-2/lua.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt
index 74bd5fa99..152d2f03d 100644
--- a/npc/003-2/lua.txt
+++ b/npc/003-2/lua.txt
@@ -122,11 +122,11 @@ L_Contributor:
mesq l("Ah, welcome @@. You have @@ Contributor Points.", strcharinfo(0), .@m);
mesq l("Let's see if you can pick a reward!");
select
- rif(!#CRW & 16 && .@m >= 4500, l("Delicious Cookie")),
- rif(!#CRW & 8 && .@m >= 2000, l("Developer Cap")),
- rif(!#CRW & 4 && .@m >= 500, l("Contributor Sweater")),
- rif(!#CRW & 2 && .@m >= 100, l("Community Shirt")),
- rif(!#CRW & 1 && .@m, l("5x Strange Coins")),
+ rif(!(#CRW & 16) && .@m >= 4500, l("Delicious Cookie")),
+ rif(!(#CRW & 8) && .@m >= 2000, l("Developer Cap")),
+ rif(!(#CRW & 4) && .@m >= 500, l("Contributor Sweater")),
+ rif(!(#CRW & 2) && .@m >= 100, l("Community Shirt")),
+ rif(!(#CRW & 1) && .@m, l("5x Strange Coins")),
l("Which rewards are available?"),
l("Ok, thanks.");