mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2024-11-10 20:20:35 +01:00
12646d1ff0
Didn't remember where i changed so the problem happened All textures were gone in game nad showing the not defined kind of thing on each node of scifi. Was showing names on info by pressing F5. Any way its now all good. So, i am uploading all 6 files. See the changes :)
23 lines
675 B
Lua
23 lines
675 B
Lua
xpanes.register_pane("doompane", {
|
|
description = "Doom pane",
|
|
tiles = {"xpanes_space.png"},
|
|
drawtype = "airlike",
|
|
paramtype = "light",
|
|
is_ground_content = false,
|
|
sunlight_propagates = true,
|
|
walkable = false,
|
|
pointable = false,
|
|
diggable = false,
|
|
buildable_to = true,
|
|
air_equivalent = true,
|
|
textures = {"scifi_nodes_doompane.png","scifi_nodes_doompane.png","default_wood.png"},
|
|
inventory_image = "scifi_nodes_doompane.png",
|
|
wield_image = "scifi_nodes_doompane.png",
|
|
groups = {cracky=1, pane=1},
|
|
recipe = {
|
|
{"default:iron_lump", "default:iron_lump", ""},
|
|
{"default:iron_lump", "", "default:iron_lump"},
|
|
{"", "default:iron_lump", "default:iron_lump"}
|
|
}
|
|
})
|