diff options
Diffstat (limited to 'world')
-rw-r--r-- | world/map/npc/002-4/chest.txt | 2 | ||||
-rw-r--r-- | world/map/npc/002-4/miners.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/002-4/chest.txt b/world/map/npc/002-4/chest.txt index e9efe1c0..c2fec840 100644 --- a/world/map/npc/002-4/chest.txt +++ b/world/map/npc/002-4/chest.txt @@ -17,7 +17,7 @@ "No.", L_Close; L_Yes: - if(countitem("TreasureKey") < 3) + if (countitem("TreasureKey") < 3) goto L_Not_Enough; getinventorylist; if (@inventorylist_count == 100 && countitem("TreasureKey") > 3) diff --git a/world/map/npc/002-4/miners.txt b/world/map/npc/002-4/miners.txt index e66d19de..401a7bbc 100644 --- a/world/map/npc/002-4/miners.txt +++ b/world/map/npc/002-4/miners.txt @@ -36,10 +36,10 @@ L_Sema_Yes: goto L_Close; L_Sema_Happy: - if (countitem ("Iten") < 1) + if (countitem("Iten") < 1) goto L_Sema_Not_Happy; getinventorylist; - if (@inventorylist_count - (countitem ("Iten") == 1) > 99) + if (@inventorylist_count - (countitem("Iten") == 1) > 99) goto L_Sema_TooMany; delitem "Iten", 1; getitem "DesertShirt", 1; |