From 814ddc567e0ce37f614e0af4aa63310c48d0d375 Mon Sep 17 00:00:00 2001 From: Nicholas Date: Sat, 11 Nov 2017 12:29:07 -0500 Subject: [PATCH] Change pop() to first() --- evennia/commands/default/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/admin.py b/evennia/commands/default/admin.py index bd6e55adaa..9da061cc04 100644 --- a/evennia/commands/default/admin.py +++ b/evennia/commands/default/admin.py @@ -301,7 +301,7 @@ class CmdDelAccount(COMMAND_DEFAULT_CLASS): # one single match - account = accounts.pop() + account = accounts.first() if not account.access(caller, 'delete'): string = "You don't have the permissions to delete that account."