Skip to content

Commit

Permalink
removed print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
StandingPadAnimations committed Feb 16, 2023
1 parent 1afc761 commit 2dc76e1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion MCprep_addon/world_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,6 @@ def execute(self, context):
LINES = mtl_file.readlines()
for index, line in enumerate(LINES):
if line.startswith("map_d"):
print(line)
LINES[index] = "# " + line
with open(MTL, 'w') as mtl_file:
mtl_file.writelines(LINES)
Expand Down

0 comments on commit 2dc76e1

Please sign in to comment.