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.
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/PKG-INFO +1 -1
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/Mansion_of_Amnesia.py +9 -10
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/PKG-INFO +1 -1
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/setup.py +1 -1
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/README.md +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/Quests.py +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/Rooms.py +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/__init__.py +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/__main__.py +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/all_game_utils.py +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/creatures.py +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/items.py +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion/utils.py +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/SOURCES.txt +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/dependency_links.txt +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/entry_points.txt +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/requires.txt +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/top_level.txt +0 -0
- {neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/setup.cfg +0 -0
@@ -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
|
-
|
667
|
-
|
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
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
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)
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='neelthee_mansion',
|
5
|
-
version='3.6.
|
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',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/dependency_links.txt
RENAMED
File without changes
|
{neelthee_mansion-3.6.13 → neelthee_mansion-3.6.14}/neelthee_mansion.egg-info/entry_points.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|