mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
- Exhumed: fixed coordinate bug with queen
# Conflicts: # source/games/exhumed/src/queen.cpp
This commit is contained in:
parent
77bc5999ce
commit
4aee3bef47
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue