This commit is contained in:
{{QWERTYKBGUI}} 2022-11-22 12:48:17 +01:00
commit 0c97b63c2a
2 changed files with 6 additions and 2 deletions

View File

@ -170,8 +170,8 @@ function destruction_counter.updateCounter(player)
local totalDestruction = destruction_counter.nodesDestroyed + math.floor(nodesDestroyedByHand / 10)
local percentage = (totalDestruction / 200 * 4)
if percentage > 200 then
percentage = 200
if percentage > 100 then
percentage = 100
end
player:hud_change(idText, "text", "Shitting & Packing Meter: " .. totalDestruction)
player:hud_change(idMeter, "scale", {x = percentage, y = 4})

View File

@ -1,6 +1,10 @@
minetest.register_abm({
nodenames = {"poop:grey_bricks"},
<<<<<<< HEAD
interval = 40,
=======
interval = 30,
>>>>>>> 742042729b4e3926e0679e3f1775f92d22ae8461
chance = 200,
action = function(pos, node, active_object_count, active_object_count_wider)
minetest.add_entity({x = pos.x, y = pos.y + 1, z = pos.z}, "robocops:robocop")