mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
Added it in one more spot info.h, added a field for it in info.c
Dunno where else to add it, still says it's not added to dehacked...
This commit is contained in:
parent
51058c3c19
commit
82c21f631f
2 changed files with 28 additions and 0 deletions
27
src/info.c
27
src/info.c
|
|
@ -22863,6 +22863,33 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
|
||||||
S_INSTAWHIP_RECHARGE3 // raisestate
|
S_INSTAWHIP_RECHARGE3 // raisestate
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{ // MT_INSTAWHIP_REJECT
|
||||||
|
-1, // doomednum
|
||||||
|
S_INSTAWHIP_REJECT, // spawnstate
|
||||||
|
1000, // spawnhealth
|
||||||
|
S_NULL, // seestate
|
||||||
|
sfx_None, // seesound
|
||||||
|
0, // reactiontime
|
||||||
|
sfx_None, // attacksound
|
||||||
|
S_NULL, // painstate
|
||||||
|
0, // painchance
|
||||||
|
sfx_None, // painsound
|
||||||
|
S_NULL, // meleestate
|
||||||
|
S_NULL, // missilestate
|
||||||
|
S_NULL, // deathstate
|
||||||
|
S_NULL, // xdeathstate
|
||||||
|
sfx_None, // deathsound
|
||||||
|
0, // speed
|
||||||
|
90*FRACUNIT, // radius
|
||||||
|
90*FRACUNIT, // height
|
||||||
|
0, // display offset
|
||||||
|
100, // mass
|
||||||
|
0, // damage
|
||||||
|
sfx_None, // activesound
|
||||||
|
MF_NOGRAVITY|MF_NOCLIPHEIGHT|MF_DONTENCOREMAP, // flags
|
||||||
|
S_NULL // raisestate
|
||||||
|
},
|
||||||
|
|
||||||
{ // MT_BLOCKRING
|
{ // MT_BLOCKRING
|
||||||
-1, // doomednum
|
-1, // doomednum
|
||||||
S_BLOCKRING, // spawnstate
|
S_BLOCKRING, // spawnstate
|
||||||
|
|
|
||||||
|
|
@ -4433,6 +4433,7 @@ typedef enum state
|
||||||
S_INSTAWHIP_RECHARGE2,
|
S_INSTAWHIP_RECHARGE2,
|
||||||
S_INSTAWHIP_RECHARGE3,
|
S_INSTAWHIP_RECHARGE3,
|
||||||
S_INSTAWHIP_RECHARGE4,
|
S_INSTAWHIP_RECHARGE4,
|
||||||
|
S_INSTAWHIP_REJECT,
|
||||||
S_BLOCKRING,
|
S_BLOCKRING,
|
||||||
S_BLOCKBODY,
|
S_BLOCKBODY,
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue