1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-02 00:47:45 +00:00

Fix zoneline handler

Old table name was still in use.
This commit is contained in:
Minho Kang 2017-08-09 01:49:23 +09:00
parent 569ae6eac1
commit 4ea0da2505

View file

@ -26,7 +26,7 @@ namespace Core {
void ZoneMgr::loadZonePositionMap()
{
auto pQR = g_database.query( "SELECT id, target_zone_id, pos_x, pos_y, pos_z, pos_o, radius " \
"FROM dbzonepositions;" );
"FROM zonepositions;" );
if( !pQR )
return;