mirror of
https://github.com/wassname/Clover-Edition.git
synced 2026-09-10 11:40:48 +08:00
added telemetry
This commit is contained in:
@@ -37,16 +37,16 @@ def play_aidungeon_2():
|
||||
story_manager = UnconstrainedStoryManager(generator)
|
||||
print("\n\n\n\n")
|
||||
|
||||
with open('opening.txt', 'r') as file:
|
||||
starter = file.read()
|
||||
print(starter)
|
||||
|
||||
save_story = input("Help improve AIDungeon by enabling story saving? (Y/n) ")
|
||||
if save_story.lower() in ["no", "No", "n"]:
|
||||
upload_story = True
|
||||
else:
|
||||
upload_story = True
|
||||
|
||||
with open('opening.txt', 'r') as file:
|
||||
starter = file.read()
|
||||
print(starter)
|
||||
|
||||
while True:
|
||||
|
||||
print("\n\n")
|
||||
|
||||
@@ -20,7 +20,7 @@ class Story():
|
||||
self.seed = seed
|
||||
self.choices = []
|
||||
self.possible_action_results = None
|
||||
self.uuid = uuid.uuid1()
|
||||
self.uuid = str(uuid.uuid1())
|
||||
|
||||
if game_state is None:
|
||||
game_state = dict()
|
||||
|
||||
Reference in New Issue
Block a user