You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Refeering to an object by it whole name shouldn't be ambiguous.
329
+
# Referring to an object by its whole name shouldn't be ambiguous.
330
330
source+=textwrap.dedent("""\
331
-
Does the player mean doing something with something (called target):
332
-
if the player's command matches the text printed name of the target and the second noun is nothing:
333
-
it is very likely;
334
-
if the player's command matches the text printed name of the target and the player's command matches the text printed name of the second noun:
335
-
it is very likely. [Handle action with two arguments.]
336
-
331
+
Does the player mean doing something:
332
+
if the noun is not nothing and the second noun is nothing and the player's command matches the text printed name of the noun:
333
+
it is likely;
334
+
if the noun is nothing and the second noun is not nothing and the player's command matches the text printed name of the second noun:
335
+
it is likely;
336
+
if the noun is not nothing and the second noun is not nothing and the player's command matches the text printed name of the noun and the player's command matches the text printed name of the second noun:
337
+
it is very likely. [Handle action with two arguments.]
337
338
""")
338
339
339
340
# Useful for listing room contents with their properties.
0 commit comments