Fix an error when there are many same-named characters/objects to puppet with ic.

This commit is contained in:
Griatch 2016-08-31 17:43:19 +02:00
parent 00881c3bbe
commit e66020f369

View file

@ -272,7 +272,7 @@ class CmdIC(COMMAND_DEFAULT_CLASS):
self.msg("That is not a valid character choice.") self.msg("That is not a valid character choice.")
return return
if len(new_character) > 1: if len(new_character) > 1:
self.msg("Multiple characters with the same name:\n %s" % ", ".join(new_character)) self.msg("Multiple targets with the same name:\n %s" % ", ".join("%s(#%s)" % (obj.key, obj.id) for obj in new_character))
return return
else: else:
new_character = new_character[0] new_character = new_character[0]