X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=lib%2Fmudpy%2Fmisc.py;fp=lib%2Fmudpy%2Fmisc.py;h=c0845c5a7c8045d9b61f5a7df0fd8d49c96a2476;hp=bf107a4bd59f770f44002282d7bb768d4625f09b;hb=49f76e99340119c5bd403a05913531aed07e5e9b;hpb=c107f5282c9c7356103a5556a7173aa35a5805ec diff --git a/lib/mudpy/misc.py b/lib/mudpy/misc.py index bf107a4..c0845c5 100644 --- a/lib/mudpy/misc.py +++ b/lib/mudpy/misc.py @@ -2055,11 +2055,11 @@ def command_say(actor, parameters): if message: # match the punctuation used, if any, to an action - actions = universe.categories["internal"]["language"].get( + actions = universe.contents["mudpy.linguistic"].get( "actions" ) default_punctuation = ( - universe.categories["internal"]["language"].get( + universe.contents["mudpy.linguistic"].get( "default_punctuation")) action = "" @@ -2084,7 +2084,7 @@ def command_say(actor, parameters): message = message[0].lower() + message[1:] # iterate over all words in message, replacing typos - typos = universe.categories["internal"]["language"].get( + typos = universe.contents["mudpy.linguistic"].get( "typos" ) words = message.split()