mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-19 16:31:29 +00:00
[Bug Fix] Fix issue in character_corpses Repository Query (#4029)
* [Bug Fix] Fix issue in character_corpses Repository Query # Notes - Query had an extra ` inside of it, causing it to fail. * Update character_corpses_repository.h
This commit is contained in:
parent
9ee16f8bf7
commit
ff2e56abc7
@ -141,7 +141,7 @@ public:
|
|||||||
{
|
{
|
||||||
db.QueryDatabase(
|
db.QueryDatabase(
|
||||||
fmt::format(
|
fmt::format(
|
||||||
"UPDATE `{}` SET `zone_id` = {}, `instance_id` = 0, `x` = {:.2f}, `y` = {:.2f}, `z` = {:.2f}`, `heading` = {:.2f}, `was_at_graveyard` = 1 WHERE `instance_id` = {}",
|
"UPDATE `{}` SET `zone_id` = {}, `instance_id` = 0, `x` = {:.2f}, `y` = {:.2f}, `z` = {:.2f}, `heading` = {:.2f}, `was_at_graveyard` = 1 WHERE `instance_id` = {}",
|
||||||
TableName(),
|
TableName(),
|
||||||
graveyard_zone_id,
|
graveyard_zone_id,
|
||||||
position.x,
|
position.x,
|
||||||
@ -163,7 +163,7 @@ public:
|
|||||||
{
|
{
|
||||||
db.QueryDatabase(
|
db.QueryDatabase(
|
||||||
fmt::format(
|
fmt::format(
|
||||||
"UPDATE `{}` SET `zone_id` = {}, `instance_id` = {}, `x` = {:.2f}, `y` = {:.2f}, `z` = {:.2f}`, `heading` = {:.2f}, `was_at_graveyard` = 1 WHERE `{}` = {}",
|
"UPDATE `{}` SET `zone_id` = {}, `instance_id` = {}, `x` = {:.2f}, `y` = {:.2f}, `z` = {:.2f}, `heading` = {:.2f}, `was_at_graveyard` = 1 WHERE `{}` = {}",
|
||||||
TableName(),
|
TableName(),
|
||||||
zone_id,
|
zone_id,
|
||||||
instance_id,
|
instance_id,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user