neelthee-mansion 3.23.7__tar.gz → 3.23.9__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/PKG-INFO +1 -1
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion/Mansion_of_Amnesia.py +3 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion/Rooms.py +1 -2
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion/utils.py +1 -1
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion.egg-info/PKG-INFO +1 -1
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/setup.py +1 -1
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/LICENSE.md +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/README.md +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion/Books.py +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion/Quests.py +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion/__init__.py +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion/__main__.py +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion/all_game_utils.py +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion/creatures.py +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion/items.py +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion.egg-info/SOURCES.txt +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion.egg-info/dependency_links.txt +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion.egg-info/entry_points.txt +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion.egg-info/requires.txt +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion.egg-info/top_level.txt +0 -0
- {neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/setup.cfg +0 -0
@@ -894,10 +894,13 @@ def handle_search_command(player, *Args):
|
|
894
894
|
def search_container(player: PC, Container):
|
895
895
|
ContainerName = Container
|
896
896
|
Container = ROOMS[player.CURRENTROOM]["containers"][Container]
|
897
|
+
print("Got to if staitment")
|
897
898
|
if isinstance(Container, container):
|
899
|
+
print("got past if statement")
|
898
900
|
if isinstance(Container.lock, Lock):
|
899
901
|
key = PickKey(Container.lock)
|
900
902
|
Container.Unlock(key, player)
|
903
|
+
print("Adding text now")
|
901
904
|
add_text_to_textbox(info_text_area,
|
902
905
|
f"You search the{' secret' if Container.secret else ''} {ContainerName} and find a ",
|
903
906
|
newline=False
|
@@ -218,8 +218,7 @@ obsessed with his work, his experiments, his need to control everything—everyt
|
|
218
218
|
Perhaps the mansion is not just a building. It is the keeper of souls.”
|
219
219
|
|
220
220
|
Entry 78 - The Change
|
221
|
-
“There is another price of immortality. Over the last 34 days I have been changing, and soon I will not be able to write in this diary anymore. This is the last thing I will put in
|
222
|
-
my diary. This is the last thing you will hear from Geraldo Times.”
|
221
|
+
“There is another price of immortality. Over the last 34 days I have been changing, and soon I will not be able to write in this diary anymore. This is the last thing I will put in my diary. This is the last thing you will hear from Geraldo Times.”
|
223
222
|
"""
|
224
223
|
)
|
225
224
|
]),
|
@@ -51,7 +51,7 @@ These utilities aim to simplify development processes, promote code reuse, and i
|
|
51
51
|
def add_text_to_textbox(text_area: scrolledtext.ScrolledText, text, newline=True):
|
52
52
|
# Enable the text box to insert text
|
53
53
|
text_area.config(state=tk.NORMAL)
|
54
|
-
text_area.insert(tk.END, text + "\n" if newline else "")
|
54
|
+
text_area.insert(tk.END, text + ("\n" if newline else ""))
|
55
55
|
text_area.see(tk.END)
|
56
56
|
text_area.update_idletasks()
|
57
57
|
# Set the text box back to read-only
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="neelthee_mansion",
|
5
|
-
version="3.23.
|
5
|
+
version="3.23.9", # Update version number for each release
|
6
6
|
packages=find_packages(), # Automatically finds all packages and modules
|
7
7
|
install_requires=[
|
8
8
|
"wheel",
|
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.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion.egg-info/dependency_links.txt
RENAMED
File without changes
|
{neelthee_mansion-3.23.7 → neelthee_mansion-3.23.9}/neelthee_mansion.egg-info/entry_points.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|