mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 23:36:30 +01:00
Fixed a bug in @delplayer.
This commit is contained in:
parent
d50d28f960
commit
ec4c29b592
1 changed files with 1 additions and 1 deletions
|
|
@ -302,7 +302,7 @@ class CmdDelPlayer(MuxCommand):
|
|||
|
||||
# We use player_search since we want to be sure to find also players
|
||||
# that lack characters.
|
||||
players = caller.search("*%s" % args, player=True)
|
||||
players = caller.search("*%s" % args)
|
||||
if not players:
|
||||
try:
|
||||
players = PlayerDB.objects.filter(id=args)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue