From 7e2d9426d1e2c7339eb52806939cda9538975847 Mon Sep 17 00:00:00 2001 From: Scott Horvath Date: Sat, 19 Jan 2019 18:16:17 -0600 Subject: [PATCH] fix formatting --- 3d_armor_stand/init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/3d_armor_stand/init.lua b/3d_armor_stand/init.lua index 718d30f..d578174 100644 --- a/3d_armor_stand/init.lua +++ b/3d_armor_stand/init.lua @@ -75,11 +75,11 @@ local function update_entity(pos) local def = stack:get_definition() or {} local groups = def.groups or {} if groups["armor_"..element] then - if def.texture then - table.insert(textures, def.texture) + if def.texture then + table.insert(textures, def.texture) else - table.insert(textures, item:gsub("%:", "_")..".png") - end + table.insert(textures, item:gsub("%:", "_")..".png") + end end end end