Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix stacking behaviour for some items in creative #11

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion mods/fl_agriculture/crops/carrot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ minetest.register_craftitem("fl_agriculture:carrot", {
if minetest.get_item_group(node.name, "plantable") ~= 1 then return end
if minetest.registered_nodes[anode.name].drawtype ~= "airlike" then return end
minetest.set_node({x=pos.x, y=pos.y+1,z=pos.z}, {name = "fl_agriculture:carrot_1", param2 = 3})
itemstack:take_item()
if not (placer and placer:is_player()
and minetest.is_creative_enabled(placer:get_player_name()))
then
itemstack:take_item()
end
return itemstack
end,
_dungeon_loot = {name = "fl_agriculture:carrot", chance = 0.6, count = {3, 6}},
Expand Down
6 changes: 5 additions & 1 deletion mods/fl_agriculture/crops/potato.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ minetest.register_craftitem("fl_agriculture:potato", {
if minetest.get_item_group(node.name, "plantable") ~= 1 then return end
if minetest.registered_nodes[anode.name].drawtype ~= "airlike" then return end
minetest.set_node({x=pos.x, y=pos.y+1,z=pos.z}, {name = "fl_agriculture:potato_1", param2 = 3})
itemstack:take_item()
if not (placer and placer:is_player()
and minetest.is_creative_enabled(placer:get_player_name()))
then
itemstack:take_item()
end
return itemstack
end,
_dungeon_loot = {name = "fl_agriculture:potato", chance = 0.6, count = {3, 6}},
Expand Down
20 changes: 18 additions & 2 deletions mods/fl_bottles/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,23 @@ minetest.register_craftitem("fl_bottles:invisibility", {
end
)

itemstack:take_item()
if not (placer and placer:is_player()
and minetest.is_creative_enabled(placer:get_player_name()))
then
itemstack:take_item()
end
return itemstack
end,
})
})

minetest.register_on_leaveplayer(function(player, _)
player:get_meta():set_int("vanish", 0)
player:get_meta():set_int("in_vanish", 0)
end)

minetest.register_on_shutdown(function()
for _, player in pairs(minetest.get_connected_players()) do
player:get_meta():set_int("vanish", 0)
player:get_meta():set_int("in_vanish", 0)
end
end)
11 changes: 3 additions & 8 deletions mods/fl_light_sources/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,18 +80,13 @@ minetest.register_node("fl_light_sources:lantern", {
{-3/16, -0.5, -3/16, 3/16, 0, 3/16},
},
},
on_place = function(itemstack, placer, pointed_thing)
on_place = function(itemstack, placer, pointed_thing)
if pointed_thing.type ~= "node" then return end
if pointed_thing.under.y-pointed_thing.above.y == 1 then
local stack = ItemStack(itemstack)
stack:set_name("fl_light_sources:lantern_c")
minetest.item_place(stack, placer, pointed_thing)
itemstack:take_item()
return itemstack
-- This does not mutate the original stack
itemstack:set_name("fl_light_sources:lantern_c")
end
minetest.item_place(itemstack, placer, pointed_thing)
itemstack:take_item()
return itemstack
end,
groups = {dig_stone = 2, lantern = 1}
})
Expand Down
22 changes: 16 additions & 6 deletions mods/fl_topsoil/topsoil.lua
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,14 @@ minetest.register_node("fl_topsoil:snow", {
minetest.node_dig(pos, node, digger)
local inv = digger:get_inventory()
if not inv then return end
local inv_add = inv:add_item("main", "fl_topsoil:snow "..tostring(level/8-1))
if not inv_add:is_empty() then
minetest.add_item(pos, inv_add)
if not (digger and digger:is_player()
and minetest.is_creative_enabled(digger:get_player_name())
and inv:contains_item("main", "fl_topsoil:snow"))
then
local inv_add = inv:add_item("main", "fl_topsoil:snow "..tostring(level/8-1))
if not inv_add:is_empty() then
minetest.add_item(pos, inv_add)
end
end
end,
on_place = function(itemstack, player, pointed_thing)
Expand All @@ -141,16 +146,21 @@ minetest.register_node("fl_topsoil:snow", {

if under_node.name == "fl_topsoil:snow" then
local level = minetest.get_node_level(pointed_thing.under)
-- Set node level
if level >= 56 then
minetest.swap_node(pointed_thing.under, {name = "fl_topsoil:snow_block"})
itemstack:take_item()
return itemstack, true
else
level = level + 8
minetest.set_node_level(pointed_thing.under, level)
end

-- Now take item away in survival
if not (player and player:is_player()
and minetest.is_creative_enabled(player:get_player_name()))
then
itemstack:take_item()
return itemstack, true
end
return itemstack
else
return minetest.item_place_node(itemstack, player, pointed_thing)
end
Expand Down
14 changes: 14 additions & 0 deletions mods/fl_trains/engine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,13 @@ minetest.register_entity("fl_trains:train_engine", {

on_punch = function(self, puncher, time_from_last_punch, tool_capabilities, dir)
self.object:remove()
if not (puncher and puncher:is_player()) then return end
local inv = puncher:get_inventory()
if minetest.is_creative_enabled(puncher:get_player_name())
and inv:contains_item("main", "fl_trains:train_engine")
then return end

inv:add_item("main", "fl_trains:train_engine")
end,

on_rightclick=function(self, clicker)
Expand Down Expand Up @@ -260,7 +267,14 @@ minetest.register_craftitem("fl_trains:train_engine", {
ent:set_rotation(vector.new(0,deg_to_rad(-45),0))
end
end

if not (placer and placer:is_player()
and minetest.is_creative_enabled(placer:get_player_name()))
then
itemstack:take_item()
end
end
return itemstack
end,
groups = {not_in_creative_inventory = 1}
})
6 changes: 5 additions & 1 deletion mods/fl_workshop/saw.lua
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,11 @@ minetest.register_node(":fl_stairs:tablesaw", {
and pointed_thing.type == "node"
and minetest.get_modpath("fl_tnt") then
fl_tnt.boom(pointed_thing.under, {radius = 3})
itemstack:take_item()
if not (placer and placer:is_player()
and minetest.is_creative_enabled(placer:get_player_name()))
then
itemstack:take_item()
end
--placer:set_wielded_item(itemstack)
return itemstack
end
Expand Down