mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-15 07:31:55 +00:00
Merge branch 'nights-dronebox' into nights-ideyaspawn-dronebox
This commit is contained in:
commit
d3a6688601
1 changed files with 5 additions and 4 deletions
|
|
@ -8544,14 +8544,15 @@ void A_ToggleFlameJet(mobj_t* actor)
|
|||
// var1 = Angle adjustment (aka orbit speed)
|
||||
// var2:
|
||||
// Lower 16 bits: height offset
|
||||
// Bits 17-20: set if object is Nightopian Helper
|
||||
// Bits 21-24: set to not sync scale to player
|
||||
// Bit 17: set if object is Nightopian Helper
|
||||
// Bit 18: Unused
|
||||
// Bit 19: set to not sync scale to player
|
||||
//
|
||||
void A_OrbitNights(mobj_t* actor)
|
||||
{
|
||||
INT32 ofs = (var2 & 0xFFFF);
|
||||
boolean ishelper = (var2 & 0xF0000);
|
||||
boolean donotrescale = (var2 & 0xF00000);
|
||||
boolean ishelper = (var2 & 0x10000);
|
||||
boolean donotrescale = (var2 & 0x40000);
|
||||
#ifdef HAVE_BLUA
|
||||
if (LUA_CallAction("A_OrbitNights", actor))
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue