This commit is contained in:
TehRealSalt 2018-10-10 17:46:23 -04:00
parent da68d40760
commit 005bb7a5e0
1 changed files with 2 additions and 2 deletions

View File

@ -4719,7 +4719,7 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
//K_DoSneaker(player, 2);
player->kartstuff[k_rocketsneakertimer] = itemtime*3;
player->kartstuff[k_rocketsneakertimer] = (itemtime*3);
player->kartstuff[k_itemamount]--;
K_UpdateHnextList(player, true);
@ -6152,7 +6152,7 @@ static void K_drawKartItem(void)
if (itembar && hudtrans)
{
const INT32 barlength = (splitscreen > 1 ? 12 : 24);
const INT32 max = itemtime*3; // timer's normal highest value
const INT32 max = (itemtime*3); // timer's normal highest value
const INT32 length = min(barlength, (itembar * barlength) / max);
const INT32 height = (offset ? 1 : 2);
const INT32 x = (offset ? 17 : 11), y = (offset ? 27 : 35);