mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-20 20:41:10 +00:00
Update item debris for rng states
This commit is contained in:
parent
d582cf0a3f
commit
569021ba91
2 changed files with 6 additions and 6 deletions
|
|
@ -95,9 +95,9 @@ spawn_cloud
|
|||
{
|
||||
mobj_t *puff = P_SpawnMobjFromMobj(
|
||||
collectible,
|
||||
P_RandomRange(-spacing, spacing) * FRACUNIT,
|
||||
P_RandomRange(-spacing, spacing) * FRACUNIT,
|
||||
P_RandomRange(0, 4 * spacing) * FRACUNIT,
|
||||
P_RandomRange(PR_UNDEFINED, -spacing, spacing) * FRACUNIT,
|
||||
P_RandomRange(PR_UNDEFINED, -spacing, spacing) * FRACUNIT,
|
||||
P_RandomRange(PR_UNDEFINED, 0, 4 * spacing) * FRACUNIT,
|
||||
MT_SPINDASHDUST
|
||||
);
|
||||
|
||||
|
|
|
|||
|
|
@ -14543,9 +14543,9 @@ A_SpawnItemDebrisCloud (mobj_t *actor)
|
|||
|
||||
mobj_t *puff = P_SpawnMobjFromMobj(
|
||||
target,
|
||||
P_RandomRange(-spacing, spacing) * FRACUNIT,
|
||||
P_RandomRange(-spacing, spacing) * FRACUNIT,
|
||||
P_RandomRange(0, 4 * spacing) * FRACUNIT,
|
||||
P_RandomRange(PR_UNDEFINED, -spacing, spacing) * FRACUNIT,
|
||||
P_RandomRange(PR_UNDEFINED, -spacing, spacing) * FRACUNIT,
|
||||
P_RandomRange(PR_UNDEFINED, 0, 4 * spacing) * FRACUNIT,
|
||||
MT_SPINDASHDUST
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue