Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alkorgun/blacksmith-2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'expansions/access/code.py')
-rw-r--r--expansions/access/code.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/expansions/access/code.py b/expansions/access/code.py
index e1d6b50..53cec36 100644
--- a/expansions/access/code.py
+++ b/expansions/access/code.py
@@ -18,8 +18,10 @@ class expansion_temp(expansion):
def command_get_access(self, ltype, source, body, disp):
def get_acc(access):
- if access >= 8:
- access = "%d (BOSS)" % (access)
+ if access > 8:
+ access = "%d (Gandalf)" % (access)
+ elif access == 8:
+ access = "8 (God)"
elif access == 7:
access = "7 (Chief)"
else: