mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-03 07:22:10 +00:00
Fix Klagen spawn height
This commit is contained in:
parent
0aa6d8c86b
commit
08ee7dabac
1 changed files with 8 additions and 1 deletions
|
|
@ -40,9 +40,16 @@ void Obj_WPZFountainThink(mobj_t *mo)
|
||||||
// kuragens
|
// kuragens
|
||||||
void Obj_WPZKuragenThink(mobj_t *mo)
|
void Obj_WPZKuragenThink(mobj_t *mo)
|
||||||
{
|
{
|
||||||
|
//(void)mo;
|
||||||
boolean active = false;
|
boolean active = false;
|
||||||
|
|
||||||
P_SetScale(mo, mapobjectscale*2);
|
// .....and i need to do this... because?
|
||||||
|
if (!mo->cusval)
|
||||||
|
{
|
||||||
|
P_SetScale(mo, mapobjectscale*2);
|
||||||
|
mo->destscale = mapobjectscale*2;
|
||||||
|
mo->cusval = 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (!(mo->spawnpoint->options & 1 || mo->spawnpoint->thing_args[0])) // extra flag skips player checks, making it a decoration.
|
if (!(mo->spawnpoint->options & 1 || mo->spawnpoint->thing_args[0])) // extra flag skips player checks, making it a decoration.
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue