From ad210ec59f57a449ebf659b2e554c8681ba5ddcf Mon Sep 17 00:00:00 2001 From: Ombridride Date: Thu, 30 Jul 2015 00:48:46 +0200 Subject: [PATCH] Change quests award --- mods/mff/mff_quests/init.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mods/mff/mff_quests/init.lua b/mods/mff/mff_quests/init.lua index 5b364dba..a06d8c72 100755 --- a/mods/mff/mff_quests/init.lua +++ b/mods/mff/mff_quests/init.lua @@ -5,9 +5,9 @@ mff.QNOPREFIX = function(s) return s:sub(mff.QPREFIX:len()+1) end mff.quests.quests = { still_testing_quests = { title = "Stone digger", - description = "TEST QUEST!\nGet a mithril ingot at the end!", + description = "TEST QUEST!\nGet a Super Apple at the end!", repeating = 60*60*24, - awards = {["moreores:mithril_ingot"] = 1}, + awards = {["maptools:superapple"] = 1}, tasks = { diggy = { title = "Dig 99 stone", @@ -30,9 +30,9 @@ mff.quests.quests = { }, still_testing_quests2 = { title = "Coal digger", - description = "TEST QUEST!\nGet a mithril ingot at the end!", + description = "TEST QUEST!\nGet a Diamond at the end!", repeating = 60*60*24, - awards = {["moreores:mithril_ingot"] = 1}, + awards = {["default:diamond"] = 1}, tasks = { diggy = { title = "Dig 19 coal", @@ -135,4 +135,4 @@ minetest.register_on_joinplayer(function (player) mff.quests.start_quest(playername, qname) end end -end) \ No newline at end of file +end)