Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YummyBacon5 authored Jan 21, 2025
1 parent 0b5d663 commit 144b7bc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,8 @@ def print_typewriter_effect(text: str, effect: Literal["Slow", "Fast", "None"]):
for i, char in enumerate(text):
if i != len(text):
print(char, end="", flush=True)
else:
print(char)
ignore_input_time(speed)
print("\n")

class PlayerData():
current_location: str = list(GAME_WORLD.keys())[0]
Expand Down

0 comments on commit 144b7bc

Please sign in to comment.