diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-02 19:45:28 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-02 19:45:28 -0300 |
commit | df01eb784f3cb59bea386b21fdf89a09c089293e (patch) | |
tree | af20441f3a8b1c1519e7691a2ee9111b90160561 | |
parent | 5aa1f7177bc5e6345cd2e15f94f7ff9835e2f138 (diff) | |
download | serverdata-df01eb784f3cb59bea386b21fdf89a09c089293e.tar.gz serverdata-df01eb784f3cb59bea386b21fdf89a09c089293e.tar.bz2 serverdata-df01eb784f3cb59bea386b21fdf89a09c089293e.tar.xz serverdata-df01eb784f3cb59bea386b21fdf89a09c089293e.zip |
[skip ci] SQL is never right the first time...
-rw-r--r-- | npc/functions/main.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/main.txt b/npc/functions/main.txt index 6d1c3762c..365943742 100644 --- a/npc/functions/main.txt +++ b/npc/functions/main.txt @@ -238,7 +238,7 @@ function script isin { // Get some acc id, even if offline // ( Name ) function script gf_accid { - .@nb = query_sql("SELECT `char`.account_id WHERE `char`.name='"+escape_sql(getarg(0))+"' LIMIT 2", .@value); + .@nb = query_sql("SELECT account_id FROM `char` WHERE name='"+escape_sql(getarg(0))+"' LIMIT 2", .@value); return .@value[0]; } |