mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-14 23:21:07 +01:00
Make composter_progress_chance local, as it is not used anywhere except in mcl_composters
This commit is contained in:
parent
d09791db7b
commit
6741c5a809
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ end
|
||||||
---@param pos Vector Position of the node
|
---@param pos Vector Position of the node
|
||||||
---@param node node
|
---@param node node
|
||||||
---@param chance integer Value of "compostability" group of inserted item
|
---@param chance integer Value of "compostability" group of inserted item
|
||||||
function composter_progress_chance(pos, node, chance)
|
local function composter_progress_chance(pos, node, chance)
|
||||||
-- calculate leveling up chance
|
-- calculate leveling up chance
|
||||||
local rand = math.random(0,100)
|
local rand = math.random(0,100)
|
||||||
if chance >= rand then
|
if chance >= rand then
|
||||||
|
|
Loading…
Reference in a new issue