diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-20 11:19:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-20 11:19:06 -0300 |
commit | 4381a0d925cc27a3ead43bca27d019b626bfc4a4 (patch) | |
tree | 8fbb6df75bae0b3b446c72d3f0afb3e1b4bc39a6 /npc/commands | |
parent | afb5312626f327bf348695d9b916c6db84d37896 (diff) | |
download | serverdata-4381a0d925cc27a3ead43bca27d019b626bfc4a4.tar.gz serverdata-4381a0d925cc27a3ead43bca27d019b626bfc4a4.tar.bz2 serverdata-4381a0d925cc27a3ead43bca27d019b626bfc4a4.tar.xz serverdata-4381a0d925cc27a3ead43bca27d019b626bfc4a4.zip |
Fix bug
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/ucp.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/commands/ucp.txt b/npc/commands/ucp.txt index 167a3a9f7..503d9f27b 100644 --- a/npc/commands/ucp.txt +++ b/npc/commands/ucp.txt @@ -65,8 +65,7 @@ function script UserCtrlPanel { } next; break; - case 4: asklanguage(LANG_IN_SHIP); break; - case 5: + case 4: .@gid=getcharid(2); mesc (".:: "+getguildname(.@gid)+" ::."), 1; mesc l("Guild Master: @@", getguildmaster(.@gid)), 3; @@ -80,6 +79,7 @@ function script UserCtrlPanel { mesc l("Your position on the guild: @@", getguildrole(.@gid, getcharid(3), true)); next; break; + case 5: asklanguage(LANG_IN_SHIP); break; case 6: mesn "Jesusalva"; mesq l("What do you think you are doing, anyway?!"); @@ -115,7 +115,7 @@ function script UserCtrlPanel { mesc l("Actually, this fails without tmwa dark magic."); mesc l("User account safety is at stake, too, so I'll move this crap to a blackbox once done."); break; - case 6: close; break; + case 7: close; break; } } while (1); } |