mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-17 23:21:05 +00:00
Fix merges
(Don't bother me hastily to merge something in again, please)
This commit is contained in:
parent
af4e4f3fe4
commit
aa00ca72e2
2 changed files with 6 additions and 2 deletions
|
@ -17648,6 +17648,10 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
|
|||
16<<FRACBITS, // speed
|
||||
20<<FRACBITS, // radius
|
||||
20<<FRACBITS, // height
|
||||
0, // display offset
|
||||
0, // mass
|
||||
0, // damage
|
||||
sfx_None, // activesound
|
||||
MF_SCENERY|MF_NOCLIP|MF_NOGRAVITY, // flags
|
||||
S_NULL // raisestate
|
||||
},
|
||||
|
|
|
@ -8830,9 +8830,9 @@ void A_ReaperThinker(mobj_t *actor)
|
|||
thinker_t *th;
|
||||
|
||||
//Player targetting stuff:
|
||||
INT32 maxscore = 0; // we target the player with the highest score so yeah there you go.
|
||||
UINT32 maxscore = 0; // we target the player with the highest score so yeah there you go.
|
||||
player_t *player; // used as a shortcut in a loop.
|
||||
mobj_t *targetplayermo; // the player mo we can eventually target, or whatever.
|
||||
mobj_t *targetplayermo = NULL; // the player mo we can eventually target, or whatever.
|
||||
|
||||
|
||||
#ifdef HAVE_BLUA
|
||||
|
|
Loading…
Reference in a new issue