mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-04 07:52:22 +00:00
Replace item pickup sound
This commit is contained in:
parent
8e9e4c7aac
commit
6b9029bede
4 changed files with 3 additions and 5 deletions
|
|
@ -13205,7 +13205,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
|
||||||
S_NULL, // missilestate
|
S_NULL, // missilestate
|
||||||
S_NULL, // deathstate
|
S_NULL, // deathstate
|
||||||
S_NULL, // xdeathstate
|
S_NULL, // xdeathstate
|
||||||
sfx_itpick, // deathsound
|
sfx_mbs54, // deathsound
|
||||||
0, // speed
|
0, // speed
|
||||||
48*FRACUNIT, // radius
|
48*FRACUNIT, // radius
|
||||||
64*FRACUNIT, // height
|
64*FRACUNIT, // height
|
||||||
|
|
@ -13232,7 +13232,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
|
||||||
S_NULL, // missilestate
|
S_NULL, // missilestate
|
||||||
S_NULL, // deathstate
|
S_NULL, // deathstate
|
||||||
S_NULL, // xdeathstate
|
S_NULL, // xdeathstate
|
||||||
sfx_itpick, // deathsound
|
sfx_mbs54, // deathsound
|
||||||
0, // speed
|
0, // speed
|
||||||
48*FRACUNIT, // radius
|
48*FRACUNIT, // radius
|
||||||
64*FRACUNIT, // height
|
64*FRACUNIT, // height
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ bool award_target(mobj_t* mobj)
|
||||||
player->roundconditions.gachabom_miser = 0;
|
player->roundconditions.gachabom_miser = 0;
|
||||||
|
|
||||||
//S_StartSoundAtVolume(target, sfx_grbnd3, 255/3);
|
//S_StartSoundAtVolume(target, sfx_grbnd3, 255/3);
|
||||||
S_StartSound(target, sfx_itpick);
|
S_StartSound(target, sfx_mbs54);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1047,7 +1047,6 @@ sfxinfo_t S_sfx[NUMSFX] =
|
||||||
{"ruburn", false, 48, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Rubber-burn turn ambient
|
{"ruburn", false, 48, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Rubber-burn turn ambient
|
||||||
{"ddash", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Respawn Drop Dash
|
{"ddash", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Respawn Drop Dash
|
||||||
{"tossed", false, 192, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Item fired
|
{"tossed", false, 192, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Item fired
|
||||||
{"itpick", false, 128, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Pick up HUD drop
|
|
||||||
{"peel", false, 96, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Edited S25A for banana landing
|
{"peel", false, 96, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Edited S25A for banana landing
|
||||||
{"hogbom", false, 96, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Ballhog explosions
|
{"hogbom", false, 96, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Ballhog explosions
|
||||||
{"zio3", false, 128, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Thunder Shield use
|
{"zio3", false, 128, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Thunder Shield use
|
||||||
|
|
|
||||||
|
|
@ -1115,7 +1115,6 @@ typedef enum
|
||||||
sfx_ruburn,
|
sfx_ruburn,
|
||||||
sfx_ddash,
|
sfx_ddash,
|
||||||
sfx_tossed,
|
sfx_tossed,
|
||||||
sfx_itpick,
|
|
||||||
sfx_peel,
|
sfx_peel,
|
||||||
sfx_hogbom,
|
sfx_hogbom,
|
||||||
sfx_zio3,
|
sfx_zio3,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue