Pickmeup: one last round

This commit is contained in:
Antonio Martinez 2025-05-16 23:21:47 -04:00
parent 1a2f3b0d3b
commit 54b3450768
4 changed files with 9 additions and 1 deletions

View file

@ -287,6 +287,7 @@ private:
case MT_LANDMINE:
case MT_BANANA:
case MT_BANANA_SHIELD:
case MT_GACHABOM:
return {
{ // Near
{2, TICRATE/2, {kp_pickmeup}, 0}, // 1P
@ -906,6 +907,7 @@ void K_drawTargetHUD(const vector3_t* origin, player_t* player)
case MT_LANDMINE:
case MT_BANANA:
case MT_BANANA_SHIELD:
case MT_GACHABOM:
if (stplyr->mo->eflags & MFE_VERTICALFLIP)
{
pos.z -= itemOffset;

View file

@ -15581,7 +15581,7 @@ static void K_PickUp(player_t *player, mobj_t *picked)
player->backupitemamount = amount;
}
S_StartSound(player->mo, sfx_mbs54);
S_StartSound(player->mo, sfx_aple);
K_TryMoveBackupItem(player);
}

View file

@ -1540,6 +1540,9 @@ sfxinfo_t S_sfx[NUMSFX] =
// Walltransfer
{"ggfall", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""},
// :apple:
{"aple", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""},
// SRB2kart - Skin sounds
{"kwin", false, 64, 96, -1, NULL, 0, SKSKWIN, -1, LUMPERROR, ""},
{"klose", false, 64, 96, -1, NULL, 0, SKSKLOSE, -1, LUMPERROR, ""},

View file

@ -1616,6 +1616,9 @@ typedef enum
// Walltransfer fuck
sfx_ggfall,
// :apple:
sfx_aple,
// And LASTLY, Kart's skin sounds.
sfx_kwin,
sfx_klose,