Skip to content

Commit 3e1904f

Browse files
authoredApr 5, 2021
Devtest: Remove testnodes_show_fallback_image
1 parent 8878367 commit 3e1904f

File tree

3 files changed

+0
-29
lines changed

3 files changed

+0
-29
lines changed
 

‎games/devtest/mods/testnodes/drawtypes.lua

-20
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,6 @@ testing this node easier and more convenient.
1515

1616
local S = minetest.get_translator("testnodes")
1717

18-
-- If set to true, will show an inventory image for nodes that have no inventory image as of Minetest 5.1.0.
19-
-- This is due to <https://github.com/minetest/minetest/issues/9209>.
20-
-- This is only added to make the items more visible to avoid confusion, but you will no longer see
21-
-- the default inventory images for these items. When you want to test the default inventory image of drawtypes,
22-
-- this should be turned off.
23-
-- TODO: Remove support for fallback inventory image as soon #9209 is fixed.
24-
local SHOW_FALLBACK_IMAGE = minetest.settings:get_bool("testnodes_show_fallback_image", false)
25-
26-
local fallback_image = function(img)
27-
if SHOW_FALLBACK_IMAGE then
28-
return img
29-
else
30-
return nil
31-
end
32-
end
33-
3418
-- A regular cube
3519
minetest.register_node("testnodes:normal", {
3620
description = S("Normal Drawtype Test Node"),
@@ -158,7 +142,6 @@ minetest.register_node("testnodes:torchlike", {
158142
walkable = false,
159143
sunlight_propagates = true,
160144
groups = { dig_immediate = 3 },
161-
inventory_image = fallback_image("testnodes_torchlike_floor.png"),
162145
})
163146

164147
minetest.register_node("testnodes:torchlike_wallmounted", {
@@ -176,7 +159,6 @@ minetest.register_node("testnodes:torchlike_wallmounted", {
176159
walkable = false,
177160
sunlight_propagates = true,
178161
groups = { dig_immediate = 3 },
179-
inventory_image = fallback_image("testnodes_torchlike_floor.png"),
180162
})
181163

182164

@@ -192,7 +174,6 @@ minetest.register_node("testnodes:signlike", {
192174
walkable = false,
193175
groups = { dig_immediate = 3 },
194176
sunlight_propagates = true,
195-
inventory_image = fallback_image("testnodes_signlike.png"),
196177
})
197178

198179
minetest.register_node("testnodes:plantlike", {
@@ -510,7 +491,6 @@ minetest.register_node("testnodes:airlike", {
510491
walkable = false,
511492
groups = { dig_immediate = 3 },
512493
sunlight_propagates = true,
513-
inventory_image = fallback_image("testnodes_airlike.png"),
514494
})
515495

516496
-- param2 changes liquid height

‎games/devtest/mods/testnodes/settingtypes.txt

-4
This file was deleted.

‎games/devtest/settingtypes.txt

-5
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,3 @@ devtest_dungeon_mossycobble (Generate mossy cobblestone) bool false
3030

3131
# If enabled, some very basic biomes will be registered.
3232
devtest_register_biomes (Register biomes) bool true
33-
34-
# If set to true, will show an inventory image for nodes that have no inventory image as of Minetest 5.1.0.
35-
# This is due to <https://github.com/minetest/minetest/issues/9209>.
36-
# This is only added to make the items more visible to avoid confusion, but you will no longer see the default inventory images for these items. When you want to test the default inventory image of drawtypes, this should be turned off.
37-
testnodes_show_fallback_image (Use fallback inventory images) bool false

0 commit comments

Comments
 (0)
Please sign in to comment.