forked from Mineclonia/Mineclonia
Store XP in furnaces instead of immediately dropping it
This commit is contained in:
parent
977489de04
commit
1f0fc01d20
|
@ -69,6 +69,18 @@ local receive_fields = function(pos, formname, fields, sender)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function drop_xp(pos)
|
||||||
|
if mcl_experience.throw_experience then
|
||||||
|
local meta = minetest.get_meta(pos)
|
||||||
|
local dir = vector.divide(minetest.facedir_to_dir(minetest.get_node(pos).param2),-1.95)
|
||||||
|
local xp = meta:get_int("xp")
|
||||||
|
if xp > 0 then
|
||||||
|
mcl_experience.throw_experience(vector.add(pos, dir), )
|
||||||
|
meta:set_int("xp", 0)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Node callback functions that are the same for active and inactive furnace
|
-- Node callback functions that are the same for active and inactive furnace
|
||||||
--
|
--
|
||||||
|
@ -143,6 +155,7 @@ local function on_metadata_inventory_take(pos, listname, index, stack, player)
|
||||||
elseif stack:get_name() == "mcl_fishing:fish_cooked" then
|
elseif stack:get_name() == "mcl_fishing:fish_cooked" then
|
||||||
awards.unlock(player:get_player_name(), "mcl:cookFish")
|
awards.unlock(player:get_player_name(), "mcl:cookFish")
|
||||||
end
|
end
|
||||||
|
drop_xp(pos)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -345,10 +358,7 @@ local function furnace_node_timer(pos, elapsed)
|
||||||
srclist = inv:get_list("src")
|
srclist = inv:get_list("src")
|
||||||
src_time = 0
|
src_time = 0
|
||||||
|
|
||||||
if mcl_experience.throw_experience then
|
meta:set_int("xp", meta:get_int("xp") + 1) -- ToDo give each recipe an idividial XP count
|
||||||
local dir = vector.divide(minetest.facedir_to_dir(minetest.get_node(pos).param2),-1.95)
|
|
||||||
mcl_experience.throw_experience(vector.add(pos, dir), 1)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -462,6 +472,7 @@ minetest.register_node("mcl_furnaces:furnace", {
|
||||||
end,
|
end,
|
||||||
on_destruct = function(pos)
|
on_destruct = function(pos)
|
||||||
mcl_particles.delete_node_particlespawners(pos)
|
mcl_particles.delete_node_particlespawners(pos)
|
||||||
|
drop_xp(pos)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
on_metadata_inventory_move = function(pos)
|
on_metadata_inventory_move = function(pos)
|
||||||
|
@ -529,6 +540,7 @@ minetest.register_node("mcl_furnaces:furnace_active", {
|
||||||
end,
|
end,
|
||||||
on_destruct = function(pos)
|
on_destruct = function(pos)
|
||||||
mcl_particles.delete_node_particlespawners(pos)
|
mcl_particles.delete_node_particlespawners(pos)
|
||||||
|
drop_xp(pos)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
||||||
|
|
Loading…
Reference in New Issue