diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-08-04 00:37:50 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-08-04 00:37:50 -0300 |
commit | adf1c859900bec44f0b3db956be044427ce8a75d (patch) | |
tree | 3deec3fe3182fcccf28cee438a52d4092a9426fd /npc/commands | |
parent | 86cea497593cd26369d86d184e38c192909d181c (diff) | |
download | serverdata-adf1c859900bec44f0b3db956be044427ce8a75d.tar.gz serverdata-adf1c859900bec44f0b3db956be044427ce8a75d.tar.bz2 serverdata-adf1c859900bec44f0b3db956be044427ce8a75d.tar.xz serverdata-adf1c859900bec44f0b3db956be044427ce8a75d.zip |
Remove crap function and fix a typo
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/ucp.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/commands/ucp.txt b/npc/commands/ucp.txt index 31dbafd79..96b9e3857 100644 --- a/npc/commands/ucp.txt +++ b/npc/commands/ucp.txt @@ -23,7 +23,7 @@ function script UserCtrlPanel { if (!validatepin()) break; if (!@lgc) { - query_sql("SELECT email,logincount,last_ip FROM `login` WHERE account_id="+getcharid(3)+"' LIMIT 2", .@email$, .@lgc, .@ip$); + query_sql("SELECT email,logincount,last_ip FROM `login` WHERE account_id="+getcharid(3)+" LIMIT 2", .@email$, .@lgc, .@ip$); @email$=.@email$; @lgc=.@lgc; @ip$=.@ip$; |