mirror of
https://github.com/wassname/Clover-Edition.git
synced 2026-09-10 11:40:48 +08:00
update
This commit is contained in:
+2
-1
@@ -34,7 +34,8 @@ def play_unconstrained():
|
||||
while(action == ""):
|
||||
action = input("> ")
|
||||
|
||||
action = " You " + action + "."
|
||||
action = "You " + action + "."
|
||||
action = first_to_second_person(action)
|
||||
result = story_manager.act(action)
|
||||
console_print("\n\n" + action + result)
|
||||
|
||||
|
||||
+1
-1
@@ -92,7 +92,7 @@ def mapping_variation_pairs(mapping):
|
||||
# Change you it's before a punctuation
|
||||
if mapping[0] is "you":
|
||||
mapping = ("you", "me")
|
||||
mapping_list.append((" " + mapping[0]+"\,", " " + mapping[1]+"\,"))
|
||||
mapping_list.append((" " + mapping[0]+"\,", " " + mapping[1]+","))
|
||||
mapping_list.append((" " + mapping[0]+"\?", " " + mapping[1]+"\?"))
|
||||
mapping_list.append((" " + mapping[0]+"\!", " " + mapping[1]+"\!"))
|
||||
mapping_list.append((" " + mapping[0] + "\.", " " + mapping[1] + "."))
|
||||
|
||||
Reference in New Issue
Block a user