- Exhumed: fixed coordinate bug with queen

# Conflicts:
#	source/games/exhumed/src/queen.cpp
This commit is contained in:
Christoph Oelckers 2022-08-15 08:31:11 +02:00
parent 77bc5999ce
commit 4aee3bef47

View file

@ -393,8 +393,8 @@ void BuildTail()
auto head = QueenHead.pActor;
int x = head->spr.pos.X;
int y = head->spr.pos.X;
int z = head->spr.pos.X;
int y = head->spr.pos.Y;
int z = head->spr.pos.Z;
auto pSector =head->sector();
int i;