mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 05:57:45 +00:00
Fix zoneline handler
Old table name was still in use.
This commit is contained in:
parent
004c665f03
commit
d67e6fdabd
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ namespace Core {
|
||||||
void ZoneMgr::loadZonePositionMap()
|
void ZoneMgr::loadZonePositionMap()
|
||||||
{
|
{
|
||||||
auto pQR = g_database.query( "SELECT id, target_zone_id, pos_x, pos_y, pos_z, pos_o, radius " \
|
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 )
|
if( !pQR )
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue