summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorDonBatman <serfdon@gmail.com>2015-10-23 13:54:37 -0700
committerDonBatman <serfdon@gmail.com>2015-10-23 13:54:37 -0700
commit3ab8a0c3f3163ecdcafe8f1f6d2d0e125edcde86 (patch)
tree2a064c6bf24254c44eaf73aa95ba3ecd6d9319b6 /init.lua
parent6b949da2c7610c55f2bb83c693520b9e77a9aebc (diff)
changed color of hud
new texture for power pellet renamed craftitems.lua to fruit.lua changed portal to a yellow color
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 69c0df7..b6a6e99 100644
--- a/init.lua
+++ b/init.lua
@@ -3,7 +3,7 @@
mypacman = {}
-dofile(minetest.get_modpath("mypacman").."/craftitems.lua")
+dofile(minetest.get_modpath("mypacman").."/fruit.lua")
dofile(minetest.get_modpath("mypacman").."/ghost.lua")
dofile(minetest.get_modpath("mypacman").."/blocks.lua")
dofile(minetest.get_modpath("mypacman").."/portals.lua")
@@ -43,7 +43,7 @@ minetest.register_node("mypacman:pellet_1", {
--Power Pellets. Need to make these do something
minetest.register_node("mypacman:pellet_2", {
description = "Pellet 2",
- tiles = {"wool_yellow.png^[colorize:white:140"},
+ tiles = {{name="mypacman_powerpellet.png", animation={type="vertical_frames",aspect_w=16, aspect_h=16, length=0.8}},},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",