Skip to content

Commit

Permalink
switched places of mannequin and armor
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierTremblayBoulet committed Nov 19, 2021
1 parent 6ed9d14 commit c0b22cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ def split_on_empty_lines(s):


def remove_from_list(new_value, objects):
if "Armor_" in new_value:
if "Mannequin_" in new_value:
objects.replace(new_value + "\n", "")
return
if "Horse" in new_value:
if "Armor_" in new_value:
objects.replace(new_value + "\n", "")
return
if "Mannequin_" in new_value:
if "Horse" in new_value:
objects.replace(new_value + "\n", "")
return

Expand Down

0 comments on commit c0b22cb

Please sign in to comment.