mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +00:00
Fix UFO beam spawn height on scaled maps
This commit is contained in:
parent
6e33281baf
commit
dae2142fbe
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ struct UFO : mobj_t
|
||||||
{
|
{
|
||||||
mobj_t *x;
|
mobj_t *x;
|
||||||
|
|
||||||
x = P_SpawnMobjFromMobj(this, 0, 0, this->z - this->height, MT_BATTLEUFO_BEAM);
|
x = P_SpawnMobjFromMobj(this, 0, 0, FixedDiv(this->height / 4, this->scale), MT_BATTLEUFO_BEAM);
|
||||||
x->renderflags |= RF_FLOORSPRITE|RF_NOSPLATBILLBOARD|RF_SLOPESPLAT|RF_NOSPLATROLLANGLE;
|
x->renderflags |= RF_FLOORSPRITE|RF_NOSPLATBILLBOARD|RF_SLOPESPLAT|RF_NOSPLATROLLANGLE;
|
||||||
x->colorized = true;
|
x->colorized = true;
|
||||||
x->color = SKINCOLOR_SAPPHIRE;
|
x->color = SKINCOLOR_SAPPHIRE;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue