diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-2/lua.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt index 752c1b306..80623c413 100644 --- a/npc/003-2/lua.txt +++ b/npc/003-2/lua.txt @@ -132,13 +132,13 @@ L_Contributor: mes ""; switch (@menu) { case 1: - getitembound "DeliciousCookie", 1, 1; #CRW=#CRW|8 ; break; + getitem "DeliciousCookie", 1; #CRW=#CRW|8 ; break; case 2: - getitembound "DEVCap", 1, 1; #CRW=#CRW|4 ; break; + getitem "DEVCap", 1; #CRW=#CRW|4 ; break; case 3: - getitembound "ContributorSweater", 1, 1; #CRW=#CRW|2 ; break; + getitem "ContributorSweater", 1; #CRW=#CRW|2 ; break; case 4: - getitembound "CommunityShirt", 1, 1; #CRW=#CRW|1 ; break; + getitem "CommunityShirt", 1; #CRW=#CRW|1 ; break; case 5: mes l("4500 - @@", getitemlink(DeliciousCookie)); mes l("2000 - @@", getitemlink(DEVCap)); |