Fix climbable typo

This commit is contained in:
Wuzzy 2024-11-27 21:31:29 +01:00
parent 70ed75d769
commit 5171b49871

View File

@ -663,7 +663,7 @@ doc.add_category("nodes", {
if data.def.groups.disable_jump == 1 then
if data.def.walkable == true then
datastring = datastring .. S("You can not jump while standing on this block.").."\n"
elseif not data.def.climable then
elseif not data.def.climbable then
datastring = datastring .. S("You can not jump while inside this block.").."\n"
end
end