Skip to content

Commit 90ad32f

Browse files
committed
remove debugging code
1 parent 0d66e69 commit 90ad32f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

worlds/crosscode/codegen/markers.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,6 @@ def generate_marker(self, raw_loc: dict[str, typing.Any], mwid: int) -> typing.O
113113
endX = 0;
114114
endY = 0;
115115

116-
if map_name == "jungle-city.east":
117-
breakpoint()
118-
119116
for y, row in enumerate(map_floor["tiles"]):
120117
for x, col in enumerate(row):
121118
if col == map_index:
@@ -124,8 +121,6 @@ def generate_marker(self, raw_loc: dict[str, typing.Any], mwid: int) -> typing.O
124121
endY = max(y, endY)
125122
endX = max(x, endX)
126123

127-
print(f"{map_name}: {startX}, {startY} -- {endX}, {endY}")
128-
129124
tx = startX + (endX - startX) * px
130125
ty = startY + (endY - startY) * py
131126

0 commit comments

Comments
 (0)