1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-01-08 06:30:17 +01:00
Imre Péntek 2024-03-28 11:29:07 +01:00
parent 062fc4610b
commit e27ad580d6

View File

@ -6,7 +6,7 @@
-- Load support for MT game translation.
local S = minetest.get_translator("bones")
local bones_max_slots = minetest.settings:get("bones_max_slots") or 15 * 10
local bones_max_slots = tonumber(minetest.settings:get("bones_max_slots")) or 15 * 10
local min_inv_size = 4 * 8 -- display and provide at least this many slots
bones = {}