diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-14 16:22:08 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-14 16:22:08 -0300 |
commit | 5f992cdd7fe37d06b65cc4f56d4763836c916805 (patch) | |
tree | 6dc5af3953950d0e25d9712a1565c7aa712673a3 /npc/functions | |
parent | 00d012fab3fcb141e426d47c78824024004eefd0 (diff) | |
download | serverdata-5f992cdd7fe37d06b65cc4f56d4763836c916805.tar.gz serverdata-5f992cdd7fe37d06b65cc4f56d4763836c916805.tar.bz2 serverdata-5f992cdd7fe37d06b65cc4f56d4763836c916805.tar.xz serverdata-5f992cdd7fe37d06b65cc4f56d4763836c916805.zip |
Option to strip someone of their academic titles and optionally, ban them
from the magic academy (prohibting the gain of further titles)
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/util.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index ce7bf3c71..042a9adb6 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -897,7 +897,7 @@ function script academicrank { case 2: return l("Technician"); case 1: return l("Student"); case 0: return l("Layman"); - default: return l("Error"); + default: return l("Banned from Academy"); } } |