Skip to content

Commit 1a5b1b4

Browse files
committedApr 21, 2013
Fix pressure plate wield image.
1 parent 10bacdd commit 1a5b1b4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎mesecons_pressureplates/init.lua

+3-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ end
4949
-- image: inventory and wield image of the pressure plate
5050
-- recipe: crafting recipe of the pressure plate
5151

52-
function mesecon:register_pressure_plate(offstate, onstate, description, texture_off, texture_on, recipe)
52+
function mesecon:register_pressure_plate(offstate, onstate, description, texture_off, texture_on, image, recipe)
5353
local ppspec = {
5454
offstate = offstate,
5555
onstate = onstate
@@ -112,6 +112,7 @@ mesecon:register_pressure_plate(
112112
"Wooden Pressure Plate",
113113
"jeija_pressure_plate_wood_off.png",
114114
"jeija_pressure_plate_wood_on.png",
115+
"jeija_pressure_plate_wood_off.png",
115116
{{"default:wood", "default:wood"}})
116117

117118
mesecon:register_pressure_plate(
@@ -120,4 +121,5 @@ mesecon:register_pressure_plate(
120121
"Stone Pressure Plate",
121122
"jeija_pressure_plate_stone_off.png",
122123
"jeija_pressure_plate_stone_on.png",
124+
"jeija_pressure_plate_stone_off.png",
123125
{{"default:cobble", "default:cobble"}})

0 commit comments

Comments
 (0)
Please sign in to comment.