mirror of
https://gitlab.com/drummyfish/anarch.git
synced 2024-11-25 02:12:19 -05:00
Explode at player
This commit is contained in:
parent
3bd2bd05a5
commit
d86fae78fc
20
main.c
20
main.c
@ -1713,7 +1713,19 @@ void SFG_gameStep()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (p->doubleFramesToLive == 0)
|
if (
|
||||||
|
(p->doubleFramesToLive == 0) ||
|
||||||
|
SFG_elementCollides(
|
||||||
|
SFG_player.camera.position.x,
|
||||||
|
SFG_player.camera.position.y,
|
||||||
|
SFG_player.camera.height,
|
||||||
|
p->position[0],
|
||||||
|
p->position[1],
|
||||||
|
p->position[2],
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
)
|
||||||
|
)
|
||||||
{
|
{
|
||||||
eliminate = 1;
|
eliminate = 1;
|
||||||
}
|
}
|
||||||
@ -1735,14 +1747,14 @@ void SFG_gameStep()
|
|||||||
{
|
{
|
||||||
if (
|
if (
|
||||||
SFG_elementCollides(
|
SFG_elementCollides(
|
||||||
p->position[0],
|
|
||||||
p->position[1],
|
|
||||||
p->position[2],
|
|
||||||
SFG_MONSTER_COORD_TO_RCL_UNITS(m->coords[0]),
|
SFG_MONSTER_COORD_TO_RCL_UNITS(m->coords[0]),
|
||||||
SFG_MONSTER_COORD_TO_RCL_UNITS(m->coords[1]),
|
SFG_MONSTER_COORD_TO_RCL_UNITS(m->coords[1]),
|
||||||
SFG_floorHeightAt(
|
SFG_floorHeightAt(
|
||||||
SFG_MONSTER_COORD_TO_SQUARES(m->coords[0]),
|
SFG_MONSTER_COORD_TO_SQUARES(m->coords[0]),
|
||||||
SFG_MONSTER_COORD_TO_SQUARES(m->coords[1])),
|
SFG_MONSTER_COORD_TO_SQUARES(m->coords[1])),
|
||||||
|
p->position[0],
|
||||||
|
p->position[1],
|
||||||
|
p->position[2],
|
||||||
0,
|
0,
|
||||||
0)
|
0)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user