mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-15 01:01:43 +00:00
More lenient balloon color setting
This commit is contained in:
parent
9119191b43
commit
6afcde4aa5
1 changed files with 1 additions and 2 deletions
|
@ -11741,8 +11741,7 @@ ML_NOCLIMB : Direction not controllable
|
|||
break;
|
||||
// SRB2Kart
|
||||
case MT_BALLOON:
|
||||
if (mthing->angle < MAXSKINCOLORS && mthing->angle > 0)
|
||||
mobj->color = mthing->angle;
|
||||
mobj->color = (1 + (mthing->angle % (MAXSKINCOLORS-1)));
|
||||
break;
|
||||
case MT_AAZTREE_HELPER:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue