Skip to content

Commit

Permalink
Fix another ambiguous instance column.
Browse files Browse the repository at this point in the history
  • Loading branch information
ratkosrb committed Nov 15, 2024
1 parent 32706bb commit 1d6447b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game/ObjectMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8175,8 +8175,8 @@ void ObjectMgr::LoadCorpses()
uint32 count = 0;
// 0 1 2 3 4 5 6
std::unique_ptr<QueryResult> result(CharacterDatabase.Query("SELECT `corpse`.`guid`, `player_guid`, `corpse`.`position_x`, `corpse`.`position_y`, `corpse`.`position_z`, `corpse`.`orientation`, `corpse`.`map`, "
// 7 8 9 10 11 12 13 14 15 16 17 18 19 20
"`time`, `corpse_type`, `instance`, `gender`, `race`, `class`, `skin`, `face`, `hair_style`, `hair_color`, `facial_hair`, `equipment_cache`, `guild_id`, `player_flags` FROM `corpse` "
// 7 8 9 10 11 12 13 14 15 16 17 18 19 20
"`time`, `corpse_type`, `corpse`.`instance`, `gender`, `race`, `class`, `skin`, `face`, `hair_style`, `hair_color`, `facial_hair`, `equipment_cache`, `guild_id`, `player_flags` FROM `corpse` "
"JOIN `characters` ON `player_guid` = `characters`.`guid` "
"LEFT JOIN `guild_member` ON `player_guid`=`guild_member`.`guid` WHERE `corpse_type` <> 0"));

Expand Down

0 comments on commit 1d6447b

Please sign in to comment.