mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'abs' into 'master'
Remove unncessary operations See merge request KartKrew/Kart!176
This commit is contained in:
commit
ed3ef6601e
1 changed files with 1 additions and 1 deletions
|
|
@ -1623,7 +1623,7 @@ static void K_DrawDraftCombiring(player_t *player, player_t *victim, fixed_t cur
|
||||||
cury + (P_RandomRange(-12,12)*mapobjectscale),
|
cury + (P_RandomRange(-12,12)*mapobjectscale),
|
||||||
curz + (P_RandomRange(24,48)*mapobjectscale),
|
curz + (P_RandomRange(24,48)*mapobjectscale),
|
||||||
MT_SIGNSPARKLE);
|
MT_SIGNSPARKLE);
|
||||||
P_SetMobjState(band, S_SIGNSPARK1 + (abs(leveltime+offset) % 11));
|
P_SetMobjState(band, S_SIGNSPARK1 + (leveltime % 11));
|
||||||
P_SetScale(band, (band->destscale = (3*player->mo->scale)/2));
|
P_SetScale(band, (band->destscale = (3*player->mo->scale)/2));
|
||||||
band->color = colors[c];
|
band->color = colors[c];
|
||||||
band->colorized = true;
|
band->colorized = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue