diff options
-rw-r--r-- | example/serverdata/scripts/crafting.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/serverdata/scripts/crafting.lua b/example/serverdata/scripts/crafting.lua index e8939823..ea306289 100644 --- a/example/serverdata/scripts/crafting.lua +++ b/example/serverdata/scripts/crafting.lua @@ -42,8 +42,8 @@ function craft_strict(ch, recipe) 8, -2, --take away the iron
9, -1, --take away the wood
5, 1 ) -- give a sword
- return
mana.chatmessage(ch, "You've crafted a sword")
+ return
end
mana.chatmessage(ch, "This wouldn't create anything useful")
end
@@ -60,8 +60,8 @@ function craft_lax(ch, recipe) 8, -2, --take away the iron
9, -1, --take away the wood
5, 1 ) -- give a sword
- return
mana.chatmessage(ch, "You've crafted a sword")
+ return
end
mana.chatmessage(ch, "This wouldn't create anything useful")
end
|