From a6fea595e9c98e59b4247a5339d8ab6964781bdb Mon Sep 17 00:00:00 2001
From: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
Date: Mon, 24 Sep 2018 11:20:16 +0100
Subject: [PATCH 1/3] [gates_wooden] Update tile_images -> tiles

---
 gates_wooden/init.lua | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gates_wooden/init.lua b/gates_wooden/init.lua
index 04ae50b..aaeee57 100644
--- a/gates_wooden/init.lua
+++ b/gates_wooden/init.lua
@@ -16,7 +16,7 @@ gates.register_gate('gates_wooden:long', {
 			{-0.9, -0.25, -0.1, 0.9, 0.25, 0.1},
 		},
 	},
-	tile_images = {'default_wood.png'},
+	tiles = {'default_wood.png'},
 	sunlight_propagates = true,
     paramtype = "light",
     open_on_rightclick = true
@@ -53,7 +53,7 @@ gates.register_gate('gates_wooden:short', {
 			{-0.5, -0.5, -0.06, 0.5, 0.5, 0.06},
 		},
 	},
-	tile_images = {'default_wood.png'},
+	tiles = {'default_wood.png'},
 	--sunlight_propagates = true,
     paramtype = "light",
     open_on_rightclick = true,
@@ -103,7 +103,7 @@ gates.register_gate('gates_wooden:classic', {
     sunlight_propagates = true,
     paramtype = "light",
     visual_scale = 1.5,
-	tile_images = {'gate_wooden_open.png'},
+	tiles = {'gate_wooden_open.png'},
 	walkable = false,
 	selection_box = {
 		type = "fixed",
@@ -116,7 +116,7 @@ gates.register_gate('gates_wooden:classic', {
 	},
 },
 {
-	tile_images = {'gate_wooden_top.png','gate_wooden_top.png','gate_wooden.png'},
+	tiles = {'gate_wooden_top.png','gate_wooden_top.png','gate_wooden.png'},
 	walkable = true,
 })
 

From 87d6c694f5d5331a2f6070a4703079b2c5bf5d98 Mon Sep 17 00:00:00 2001
From: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
Date: Mon, 24 Sep 2018 11:22:06 +0100
Subject: [PATCH 2/3] [gates_iron] Update tile_images -> tiles

---
 gates_iron/init.lua | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gates_iron/init.lua b/gates_iron/init.lua
index bc40021..a05bfdf 100644
--- a/gates_iron/init.lua
+++ b/gates_iron/init.lua
@@ -35,11 +35,11 @@ gates.register_gate('gates_iron:classic', {
     sunlight_propagates = true,
     paramtype = 'light',
     visual_scale = 1.5,
-	tile_images = {'gate_iron_open.png'},
+	tiles = {'gate_iron_open.png'},
 	walkable = false,
 },
 {
-	tile_images = {'gate_iron_top.png','gate_iron_top.png','gate_iron.png'},
+	tiles = {'gate_iron_top.png','gate_iron_top.png','gate_iron.png'},
 	walkable = true,
 }, "on_mesecon")
 
@@ -54,7 +54,7 @@ gates.register_gate('gates_iron:long', {
 			{-0.9, -0.25, -0.1, 0.9, 0.25, 0.1},
 		},
 	},
-	tile_images = {'gate_iron_texture.png'},
+	tiles = {'gate_iron_texture.png'},
 	sunlight_propagates = true,
     paramtype = "light",
     open_on_rightclick = true,
@@ -95,7 +95,7 @@ gates.register_gate('gates_iron:short', {
 			{-0.5, -0.5, -0.06, 0.5, 0.5, 0.06},
 		},
 	},
-	tile_images = {'gate_iron_texture.png'},
+	tiles = {'gate_iron_texture.png'},
 	sunlight_propagates = true,
     paramtype = "light",
     open_on_rightclick = true,

From 4535ba6b6fccd3bfff631723d2c29db8065b8efd Mon Sep 17 00:00:00 2001
From: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
Date: Mon, 24 Sep 2018 11:22:51 +0100
Subject: [PATCH 3/3] [gates] Update tile_images -> tiles

---
 gates/init.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gates/init.lua b/gates/init.lua
index d54cf5e..02bb09f 100644
--- a/gates/init.lua
+++ b/gates/init.lua
@@ -21,14 +21,14 @@
 -- {
 --     #open gate options go here
 --
---     tile_images = {'open_gate.png'}, 
+--     tiles = {'open_gate.png'}, 
 --	   walkable = false,
 --     drawtype = "plantlike",
 -- },
 -- {
 --     #closed gate options go here
 --
---     tile_images = {'closed_gate_top.png','closed_gate_bottom.png','closed_gate_sides.png'}, 
+--     tiles = {'closed_gate_top.png','closed_gate_bottom.png','closed_gate_sides.png'}, 
 --	   walkable = true,
 -- },
 -- })