Fixing character creaction bug.

This commit is contained in:
Greg Taylor 2007-05-25 13:32:08 +00:00
parent 5d75db95ed
commit cd79aa6a8f
2 changed files with 6 additions and 1 deletions

View file

@ -667,7 +667,7 @@ def cmd_wall(cdat):
session.msg("Announce what?")
return
message = "%s shouts \"%s\"" % (session.get_pobject().get_name(), wallstring)
message = "%s shouts \"%s\"" % (session.get_pobject().get_name(show_dbref=False), wallstring)
functions_general.announce_all(message)
def cmd_shutdown(cdat):