summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-07 03:11:36 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-07 03:11:36 -0400
commitf502cbd801208d416d95d534dd2cf12318ca8a5d (patch)
tree7f979185386869f51a51a0e7a8b12197f926ab4c
parentddbe33ed562ae26c232004e525c9ab62984f6a5f (diff)
downloadmesecons-f502cbd801208d416d95d534dd2cf12318ca8a5d.tar
mesecons-f502cbd801208d416d95d534dd2cf12318ca8a5d.tar.gz
mesecons-f502cbd801208d416d95d534dd2cf12318ca8a5d.tar.bz2
mesecons-f502cbd801208d416d95d534dd2cf12318ca8a5d.tar.xz
mesecons-f502cbd801208d416d95d534dd2cf12318ca8a5d.zip
use normal piston textures on sides of sticky piston plunger. Also fixes
deprecated tile_images bits.
-rw-r--r--mesecons_pistons/init.lua17
1 files changed, 12 insertions, 5 deletions
diff --git a/mesecons_pistons/init.lua b/mesecons_pistons/init.lua
index b3269bc..ccb5630 100644
--- a/mesecons_pistons/init.lua
+++ b/mesecons_pistons/init.lua
@@ -2,7 +2,7 @@
--registration normal one:
minetest.register_node("mesecons_pistons:piston_normal", {
description = "Piston",
- tile_images = {"jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_side.png"},
+ tiles = {"jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_side.png"},
groups = {cracky=3},
paramtype2 = "facedir",
after_dig_node = function(pos, oldnode)
@@ -22,7 +22,7 @@ minetest.register_node("mesecons_pistons:piston_normal", {
--registration sticky one:
minetest.register_node("mesecons_pistons:piston_sticky", {
description = "Sticky Piston",
- tile_images = {"jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_sticky_side.png"},
+ tiles = {"jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_sticky_side.png"},
groups = {cracky=3},
paramtype2 = "facedir",
after_dig_node = function(pos, oldnode)
@@ -58,7 +58,7 @@ minetest.register_craft({
minetest.register_node("mesecons_pistons:piston_pusher_normal", {
drawtype = "nodebox",
- tile_images = {"jeija_piston_pusher_normal.png"},
+ tiles = {"jeija_piston_pusher_normal.png"},
paramtype = "light",
paramtype2 = "facedir",
diggable = false,
@@ -83,7 +83,14 @@ mesecon:register_mvps_stopper("mesecons_pistons:piston_pusher_sticky")
minetest.register_node("mesecons_pistons:piston_pusher_sticky", {
drawtype = "nodebox",
- tile_images = {"jeija_piston_pusher_sticky.png"},
+ tiles = {
+ "jeija_piston_pusher_normal.png",
+ "jeija_piston_pusher_normal.png",
+ "jeija_piston_pusher_normal.png",
+ "jeija_piston_pusher_normal.png",
+ "jeija_piston_pusher_normal.png",
+ "jeija_piston_pusher_sticky.png"
+ },
paramtype = "light",
paramtype2 = "facedir",
diggable = false,
@@ -211,4 +218,4 @@ function mesecon:piston_get_direction(node)
else --node.param2 == 0
return {x=0, y=0, z=-1}
end
-end \ No newline at end of file
+end