diff options
Diffstat (limited to 'world/map')
-rw-r--r-- | world/map/npc/commands/gm.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/commands/gm.txt b/world/map/npc/commands/gm.txt index b4d8c349..075ceea0 100644 --- a/world/map/npc/commands/gm.txt +++ b/world/map/npc/commands/gm.txt @@ -5,7 +5,7 @@ OnHide: if (GM < 10 && GM < G_SYSOP) end; - if (GM == 99) set GM, 98; + if (GM >= 98) set GM, 98; else set GM, (GM - (GM % 10)) + 1; message strcharinfo(0), "hidelevel : Your GM level is now hidden."; @@ -14,7 +14,7 @@ OnHide: OnShow: if (GM < 10 && GM < G_SYSOP) end; - if (GM == 98) set GM, 99; + if (GM >= 98) set GM, 99; else set GM, GM - (GM % 10); message strcharinfo(0), "showlevel : Your GM level is now visible."; |