mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-17 10:11:02 +00:00
Hardcode Fang waypoint object type (turns out no state is needed)
This commit is contained in:
parent
d92ccf6823
commit
75701294ea
3 changed files with 29 additions and 0 deletions
|
@ -6902,6 +6902,7 @@ static const char *const MOBJTYPE_LIST[] = { // array length left dynamic for s
|
||||||
"MT_FBOMB",
|
"MT_FBOMB",
|
||||||
"MT_FSGNA",
|
"MT_FSGNA",
|
||||||
"MT_FSGNB",
|
"MT_FSGNB",
|
||||||
|
"MT_FANGWAYPOINT",
|
||||||
|
|
||||||
// Black Eggman (Boss 7)
|
// Black Eggman (Boss 7)
|
||||||
"MT_BLACKEGGMAN",
|
"MT_BLACKEGGMAN",
|
||||||
|
|
27
src/info.c
27
src/info.c
|
@ -5453,6 +5453,33 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
|
||||||
S_NULL // raisestate
|
S_NULL // raisestate
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{ // MT_FANGWAYPOINT
|
||||||
|
294, // doomednum
|
||||||
|
S_INVISIBLE, // 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
|
||||||
|
FRACUNIT, // radius
|
||||||
|
FRACUNIT, // height
|
||||||
|
0, // display offset
|
||||||
|
0, // mass
|
||||||
|
0, // damage
|
||||||
|
sfx_None, // activesound
|
||||||
|
MF_NOGRAVITY|MF_NOBLOCKMAP|MF_NOTHINK, // flags
|
||||||
|
S_NULL // raisestate
|
||||||
|
},
|
||||||
|
|
||||||
{ // MT_BLACKEGGMAN
|
{ // MT_BLACKEGGMAN
|
||||||
206, // doomednum
|
206, // doomednum
|
||||||
S_BLACKEGG_STND, // spawnstate
|
S_BLACKEGG_STND, // spawnstate
|
||||||
|
|
|
@ -3836,6 +3836,7 @@ typedef enum mobj_type
|
||||||
MT_FBOMB,
|
MT_FBOMB,
|
||||||
MT_FSGNA,
|
MT_FSGNA,
|
||||||
MT_FSGNB,
|
MT_FSGNB,
|
||||||
|
MT_FANGWAYPOINT,
|
||||||
|
|
||||||
// Black Eggman (Boss 7)
|
// Black Eggman (Boss 7)
|
||||||
MT_BLACKEGGMAN,
|
MT_BLACKEGGMAN,
|
||||||
|
|
Loading…
Reference in a new issue