neelthee-mansion 3.6.13__tar.gz → 3.6.14__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/PKG-INFO +1 -1
  2. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/Mansion_of_Amnesia.py +9 -10
  3. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/PKG-INFO +1 -1
  4. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/setup.py +1 -1
  5. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/README.md +0 -0
  6. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/Quests.py +0 -0
  7. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/Rooms.py +0 -0
  8. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/__init__.py +0 -0
  9. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/__main__.py +0 -0
  10. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/all_game_utils.py +0 -0
  11. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/creatures.py +0 -0
  12. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/items.py +0 -0
  13. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/utils.py +0 -0
  14. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/SOURCES.txt +0 -0
  15. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/dependency_links.txt +0 -0
  16. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/entry_points.txt +0 -0
  17. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/requires.txt +0 -0
  18. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/top_level.txt +0 -0
  19. {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: neelthee_mansion
3
- Version: 3.6.13
3
+ Version: 3.6.14
4
4
  Summary: A text-based adventure game set in Neel-thee’s mansion.
5
5
  Home-page: https://github.com/Flameblade375/neelthee_mansion
6
6
  Author: Alexander.E.F
@@ -273,7 +273,7 @@ def PickKey(locked_obj):
273
273
 
274
274
  # Enumerate keys and display them
275
275
  for idx, key in enumerate(keys, 1): # Starts numbering at 1
276
- type_text(f"{idx}. {key}")
276
+ type_text(f"{idx}. {key.CurentRevealStr}")
277
277
 
278
278
  # Use loop_til_valid_input to get a valid integer within the correct range
279
279
  choice = loop_til_valid_input(
@@ -306,7 +306,6 @@ def Move(move):
306
306
 
307
307
  def attempt_move_to_garden():
308
308
  global player
309
- type_text("Please pick whitch key you want to try in the lock on the gate")
310
309
  key = PickKey(Lock("629.IdnXwnt"))
311
310
  if key.KeyCode == "629.IdnXwnt":
312
311
  End('You unlock the gate to the garden with the key!')
@@ -663,8 +662,8 @@ def select_target(chooser, targets: list):
663
662
 
664
663
 
665
664
  def command():
666
- global player
667
- #try:
665
+ global player
666
+ try:
668
667
  ShouldBreak = False
669
668
 
670
669
  while True:
@@ -692,12 +691,12 @@ def command():
692
691
  ShouldBreak = True
693
692
  if ShouldBreak:
694
693
  return
695
- #except KeyError as e:
696
- # type_text(f"KeyError: {e} - This might be due to an undefined command or incorrect arguments.", colorTrue=color_coding)
697
- #except ValueError as e:
698
- # type_text(f"ValueError: {e} - This might be due to incorrect arguments provided.", colorTrue=color_coding)
699
- #except Exception as e:
700
- # type_text(f"Unexpected Error: {e}", colorTrue=color_coding)
694
+ except KeyError as e:
695
+ type_text(f"KeyError: {e} - This might be due to an undefined command or incorrect arguments.", colorTrue=color_coding)
696
+ except ValueError as e:
697
+ type_text(f"ValueError: {e} - This might be due to incorrect arguments provided.", colorTrue=color_coding)
698
+ except Exception as e:
699
+ type_text(f"Unexpected Error: {e}", colorTrue=color_coding)
701
700
 
702
701
  def handle_sleep_command(player: PC):
703
702
  type_text("You decide to rest for a while.", colorTrue=color_coding)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: neelthee-mansion
3
- Version: 3.6.13
3
+ Version: 3.6.14
4
4
  Summary: A text-based adventure game set in Neel-thee’s mansion.
5
5
  Home-page: https://github.com/Flameblade375/neelthee_mansion
6
6
  Author: Alexander.E.F
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='neelthee_mansion',
5
- version='3.6.13',
5
+ version='3.6.14',
6
6
  packages=find_packages(), # Automatically finds all packages and modules
7
7
  install_requires=[
8
8
  'wheel', 'psutil', 'playsound', 'requests', 'keyboard', 'pandas', 'validators', 'dicttoxml', 'pytz',