diff --git a/game/modules/tome/data/chats/zemekkys.lua b/game/modules/tome/data/chats/zemekkys.lua index 88b0f0eef77fa0c770a769268a64d2c1cb5f715d..21723360cbb1abd92efe7be252e272ccf54535e5 100644 --- a/game/modules/tome/data/chats/zemekkys.lua +++ b/game/modules/tome/data/chats/zemekkys.lua @@ -25,12 +25,14 @@ local function remove_materials(npc, player) local athame_o, athame_item, athame_inven_id = player:findInAllInventories("Blood-Runed Athame") player:removeObject(athame_inven_id, athame_item, true) athame_o:removed() + + player:incMoney(-100) end local function check_materials(npc, player) local gem_o, gem_item, gem_inven_id = player:findInAllInventories("Resonating Diamond") local athame_o, athame_item, athame_inven_id = player:findInAllInventories("Blood-Runed Athame") - return gem_o and athame_o and player.money >= 200 + return gem_o and athame_o and player.money >= 100 end -----------------------------------------------------------------