diff options
author | Wushin <pasekei@gmail.com> | 2015-02-19 23:12:02 -0600 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-02-19 23:12:02 -0600 |
commit | 6b75d81034f0e017f4cec776f3ab00e3e08f7ac4 (patch) | |
tree | 2819bd1a3a98a56cfa475da16be443ecaa912228 /world/map/npc/009-2/peter.txt | |
parent | 8452669804fc5dfca5a9143a542c11f1e8cc475f (diff) | |
parent | f7f84b8e69075f07fae64cca3da1b1d0a6e98eef (diff) | |
download | serverdata-6b75d81034f0e017f4cec776f3ab00e3e08f7ac4.tar.gz serverdata-6b75d81034f0e017f4cec776f3ab00e3e08f7ac4.tar.bz2 serverdata-6b75d81034f0e017f4cec776f3ab00e3e08f7ac4.tar.xz serverdata-6b75d81034f0e017f4cec776f3ab00e3e08f7ac4.zip |
Merge pull request #281 from wushin/bug-fix
Bug fix
Diffstat (limited to 'world/map/npc/009-2/peter.txt')
-rw-r--r-- | world/map/npc/009-2/peter.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/world/map/npc/009-2/peter.txt b/world/map/npc/009-2/peter.txt index 818f09cf..0eaf4ced 100644 --- a/world/map/npc/009-2/peter.txt +++ b/world/map/npc/009-2/peter.txt @@ -39,7 +39,7 @@ L_Peter_Chain_Mail: set @peter_crafting_iron_ingot, @peter_chain_mail_ingot; set @peter_crafting_money, @peter_chain_mail_money; set @peter_crafting_item$, "ChainmailShirt"; - callsub S_Peter_Get_Smithery_Item; + callsub S_Smithery_Item; goto L_Close; L_Peter_Light_Plate: @@ -47,7 +47,7 @@ L_Peter_Light_Plate: set @peter_crafting_iron_ingot, @peter_light_plate_ingot; set @peter_crafting_money, @peter_light_plate_money; set @peter_crafting_item$, "LightPlatemail"; - callsub S_Peter_Get_Smithery_Item; + callsub S_Smithery_Item; goto L_Close; L_Peter_Warlord_Plate: @@ -55,7 +55,7 @@ L_Peter_Warlord_Plate: set @peter_crafting_iron_ingot, @peter_warlord_plate_ingot; set @peter_crafting_money, @peter_warlord_plate_money; set @peter_crafting_item$, "WarlordPlate"; - callsub S_Peter_Get_Smithery_Item; + callsub S_Smithery_Item; goto L_Close; L_Peter_New_Skills: @@ -75,10 +75,10 @@ L_Peter_Warlord_Boots: set @peter_crafting_iron_ingot, @peter_warlord_boots_ingot; set @peter_crafting_money, @peter_warlord_boots_money; set @peter_crafting_item$, "WarlordBoots"; - callsub S_Peter_Get_Smithery_Item; + callsub S_Smithery_Item; goto L_Close; -S_Peter_Get_Smithery_Item: +S_Smithery_Item: if (Zeny < @peter_crafting_money) goto L_Peter_NotEnough_Zeny; if (countitem("IronIngot") < @peter_crafting_iron_ingot) |