diff --git a/lib/gamacon b/lib/gamacon
index 8b63e8f..45f10a7 160000
--- a/lib/gamacon
+++ b/lib/gamacon
@@ -1 +1 @@
-Subproject commit 8b63e8ff2e0f2ecc5bdb1f99ab5b39ccc046f55d
+Subproject commit 45f10a7f737aef7b3f16f2ec2b5cafb0e6db80b4
diff --git a/prefabs/tilemap.gcmap b/prefabs/tilemap.gcmap
index f224a3e..0b355f3 100644
--- a/prefabs/tilemap.gcmap
+++ b/prefabs/tilemap.gcmap
@@ -6804,7 +6804,7 @@
-
+
@@ -6935,8 +6935,8 @@
-
-
+
+
@@ -7016,7 +7016,7 @@
-
+
@@ -7150,8 +7150,8 @@
-
-
+
+
@@ -7210,8 +7210,8 @@
-
-
+
+
@@ -7628,7 +7628,7 @@
-
+
@@ -7840,8 +7840,8 @@
-
-
+
+
@@ -7905,8 +7905,8 @@
-
-
+
+
@@ -7970,8 +7970,8 @@
-
-
+
+
@@ -8033,13 +8033,13 @@
-
-
+
+
-
-
+
+
@@ -8054,8 +8054,8 @@
-
-
+
+
@@ -8327,8 +8327,8 @@
-
-
+
+
@@ -8382,14 +8382,14 @@
-
-
+
+
-
-
+
+
@@ -8398,8 +8398,8 @@
-
-
+
+
@@ -8531,8 +8531,8 @@
-
-
+
+
@@ -8585,8 +8585,8 @@
-
-
+
+
@@ -8741,8 +8741,8 @@
-
-
+
+
@@ -9015,11 +9015,11 @@
-
-
+
+
-
-
+
+
@@ -9078,8 +9078,8 @@
-
-
+
+
@@ -9208,8 +9208,8 @@
-
-
+
+
diff --git a/utility/do_stuff.py b/utility/do_stuff.py
index 9da3ccb..0a043c2 100755
--- a/utility/do_stuff.py
+++ b/utility/do_stuff.py
@@ -8,14 +8,12 @@ except IndexError:
sys.exit(1)
tree = ET.parse(file_entity)
root = tree.getroot()
-do_it = False
for entity in root.findall("./tiles_data/tile"):
attribs = entity.attrib
#print(f"check for x:{attribs['x']} y:{attribs['y']}")
- if ((attribs['texture'] != "" and not do_it) or not do_it):
+ if (attribs['texture'] != ""):
continue
- do_it = not do_it
- print(f"x:{attribs['x']} y:{attribs['y']}")
+ #print(f"x:{attribs['x']} y:{attribs['y']}")
attribs['solid'] = "true"
-#tree.write(file_entity)
\ No newline at end of file
+tree.write(file_entity)
\ No newline at end of file