diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-12 21:31:12 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-12 21:31:12 -0300 |
commit | a5506ed12914cffd08ed82db1d385218c96a719c (patch) | |
tree | 0511d3810a133304bb8434a696bbdfdf10fa1621 /npc/003-1 | |
parent | 62eb80e25e1fe804d5617088534c995c328dd375 (diff) | |
download | serverdata-a5506ed12914cffd08ed82db1d385218c96a719c.tar.gz serverdata-a5506ed12914cffd08ed82db1d385218c96a719c.tar.bz2 serverdata-a5506ed12914cffd08ed82db1d385218c96a719c.tar.xz serverdata-a5506ed12914cffd08ed82db1d385218c96a719c.zip |
Fix SQL bug
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/ship.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/003-1/ship.txt b/npc/003-1/ship.txt index cefea5338..fc256f713 100644 --- a/npc/003-1/ship.txt +++ b/npc/003-1/ship.txt @@ -25,7 +25,7 @@ OnTouch: L_Warp: /* Is Hurnscald already liberated? Precendence. */ if (!$HURNS_LIBDATE) { - query_sql("SELECT online FROM char WHERE charname='Saulc GM'", .@online); + query_sql("SELECT online FROM char WHERE name='Saulc GM'", .@online); if (is_gm()) dispbottom l("GMs are NOT allowed on Hurnscald Liberation day."); else if (.@online) |