summaryrefslogtreecommitdiff
path: root/npc/functions/main.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/main.txt')
-rw-r--r--npc/functions/main.txt2
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];
}