Active recipe in top right corner. Shift cycles recipes.

This commit is contained in:
Cameron Smart
2020-04-22 21:58:33 -07:00
parent 68f572124a
commit 05a9900687
4 changed files with 72 additions and 31 deletions

View File

@@ -63,7 +63,7 @@ class Player(Mob):
# Adds a kill to kill_list. If 3 or more check the recipe then give a power up if it matches.
self.kill_list.append(creature)
if self.cur_recipe == self.kill_list:
if self.cur_recipe.sort() == self.kill_list.sort():
print("+++++++++++++++++++++++++++++++++++++++++++++++++++++++")
self.kill_list = []