mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- replaced unused RNGs with pr_damagemobj for consistency checksum.
SVN r4297 (trunk)
This commit is contained in:
parent
a7c2346b32
commit
0bca41c202
4 changed files with 3 additions and 7 deletions
|
@ -12,7 +12,6 @@
|
||||||
#include "thingdef/thingdef.h"
|
#include "thingdef/thingdef.h"
|
||||||
*/
|
*/
|
||||||
|
|
||||||
FRandom pr_lost ("LostMissileRange");
|
|
||||||
FRandom pr_oldsoul ("BetaLostSoul");
|
FRandom pr_oldsoul ("BetaLostSoul");
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -86,9 +86,8 @@
|
||||||
extern FRandom pr_spawnmobj;
|
extern FRandom pr_spawnmobj;
|
||||||
extern FRandom pr_acs;
|
extern FRandom pr_acs;
|
||||||
extern FRandom pr_chase;
|
extern FRandom pr_chase;
|
||||||
extern FRandom pr_lost;
|
|
||||||
extern FRandom pr_slam;
|
|
||||||
extern FRandom pr_exrandom;
|
extern FRandom pr_exrandom;
|
||||||
|
extern FRandom pr_damagemobj;
|
||||||
|
|
||||||
// PUBLIC DATA DEFINITIONS -------------------------------------------------
|
// PUBLIC DATA DEFINITIONS -------------------------------------------------
|
||||||
|
|
||||||
|
@ -245,8 +244,7 @@ DWORD FRandom::StaticSumSeeds ()
|
||||||
pr_spawnmobj.sfmt.u[0] + pr_spawnmobj.idx +
|
pr_spawnmobj.sfmt.u[0] + pr_spawnmobj.idx +
|
||||||
pr_acs.sfmt.u[0] + pr_acs.idx +
|
pr_acs.sfmt.u[0] + pr_acs.idx +
|
||||||
pr_chase.sfmt.u[0] + pr_chase.idx +
|
pr_chase.sfmt.u[0] + pr_chase.idx +
|
||||||
pr_lost.sfmt.u[0] + pr_lost.idx +
|
pr_damagemobj.sfmt.u[0] + pr_damagemobj.idx;
|
||||||
pr_slam.sfmt.u[0] + pr_slam.idx;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
static FRandom pr_obituary ("Obituary");
|
static FRandom pr_obituary ("Obituary");
|
||||||
static FRandom pr_botrespawn ("BotRespawn");
|
static FRandom pr_botrespawn ("BotRespawn");
|
||||||
static FRandom pr_killmobj ("ActorDie");
|
static FRandom pr_killmobj ("ActorDie");
|
||||||
static FRandom pr_damagemobj ("ActorTakeDamage");
|
FRandom pr_damagemobj ("ActorTakeDamage");
|
||||||
static FRandom pr_lightning ("LightningDamage");
|
static FRandom pr_lightning ("LightningDamage");
|
||||||
static FRandom pr_poison ("PoisonDamage");
|
static FRandom pr_poison ("PoisonDamage");
|
||||||
static FRandom pr_switcher ("SwitchTarget");
|
static FRandom pr_switcher ("SwitchTarget");
|
||||||
|
|
|
@ -105,7 +105,6 @@ static FRandom pr_chunk ("Chunk");
|
||||||
static FRandom pr_checkmissilespawn ("CheckMissileSpawn");
|
static FRandom pr_checkmissilespawn ("CheckMissileSpawn");
|
||||||
static FRandom pr_spawnmissile ("SpawnMissile");
|
static FRandom pr_spawnmissile ("SpawnMissile");
|
||||||
static FRandom pr_missiledamage ("MissileDamage");
|
static FRandom pr_missiledamage ("MissileDamage");
|
||||||
FRandom pr_slam ("SkullSlam");
|
|
||||||
static FRandom pr_multiclasschoice ("MultiClassChoice");
|
static FRandom pr_multiclasschoice ("MultiClassChoice");
|
||||||
static FRandom pr_rockettrail("RocketTrail");
|
static FRandom pr_rockettrail("RocketTrail");
|
||||||
static FRandom pr_uniquetid("UniqueTID");
|
static FRandom pr_uniquetid("UniqueTID");
|
||||||
|
|
Loading…
Reference in a new issue