mirror of
https://codeberg.org/tenplus1/teleport_potion.git
synced 2025-03-16 06:31:23 +00:00
changed tile_images to tiles
This commit is contained in:
parent
08406000bd
commit
bdb715c958
1 changed files with 2 additions and 2 deletions
4
init.lua
4
init.lua
|
@ -67,7 +67,7 @@ minetest.register_node("teleport_potion:portal", {
|
||||||
|
|
||||||
-- teleport potion
|
-- teleport potion
|
||||||
minetest.register_node("teleport_potion:potion", {
|
minetest.register_node("teleport_potion:potion", {
|
||||||
tile_images = {"pad.png"},
|
tiles = {"pad.png"},
|
||||||
drawtype = "signlike",
|
drawtype = "signlike",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
|
@ -137,7 +137,7 @@ minetest.register_node("teleport_potion:potion", {
|
||||||
|
|
||||||
-- teleport pad
|
-- teleport pad
|
||||||
minetest.register_node("teleport_potion:pad", {
|
minetest.register_node("teleport_potion:pad", {
|
||||||
tile_images = {"padd.png"},
|
tiles = {"padd.png"},
|
||||||
drawtype = 'nodebox',
|
drawtype = 'nodebox',
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
|
|
Loading…
Add table
Reference in a new issue