From: zonidjan Date: Mon, 8 Mar 2021 05:27:44 +0000 (-0600) Subject: stafflist - add response if there are no staff X-Git-Url: https://jfr.im/git/erebus.git/commitdiff_plain/ab32e225ef831334776f8f8f00c2e3389880e604?hp=f89262c4ef838311231016c67d4a8e4dd811b984 stafflist - add response if there are no staff --- diff --git a/modules/stafflist.py b/modules/stafflist.py index 6449718..1c62b5d 100644 --- a/modules/stafflist.py +++ b/modules/stafflist.py @@ -40,3 +40,5 @@ def stafflist(bot, user, chan, realtarget, *args): else: response = ["#%s (%s)" % (i['auth'], _getnicks(i['auth'])) for i in staffs] user.msg("Staff listing: %s" % (', '.join(response))) + else: + user.msg("It's anarchy!")