Skip to content

Commit

Permalink
Merge pull request cmss13-devs#23 from Noname995/BANZAI
Browse files Browse the repository at this point in the history
БАНЗААААЙ
  • Loading branch information
VoiceInYourHead authored Aug 13, 2024
2 parents 7180066 + 1668a79 commit b3cc0ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/game/sound.dm
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,9 @@
S = pick('sound/voice/pred_pain1.ogg','sound/voice/pred_pain2.ogg','sound/voice/pred_pain3.ogg','sound/voice/pred_pain4.ogg','sound/voice/pred_pain5.ogg',5;'sound/voice/pred_pain_rare1.ogg')
if("clownstep")
S = pick('sound/effects/clownstep1.ogg', 'sound/effects/clownstep2.ogg')
//RUCM START
if("male_clf_warcry")
S = pick('sound/voice/clf_warcry/warcry_male_1.ogg')
return S

/client/proc/generate_sound_queues()
Expand Down
Binary file added sound/voice/clf_warcry/warcry_male_1.ogg
Binary file not shown.
4 changes: 4 additions & 0 deletions void-marines/code/modules/mob/living/carbon/human/emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -243,11 +243,15 @@
if(user.gender == MALE)
if(default_lang == GLOB.all_languages[LANGUAGE_RUSSIAN])
return get_sfx("male_upp_warcry")
else if(default_lang == GLOB.all_languages[LANGUAGE_JAPANESE])
return get_sfx("male_clf_warcry")
else
return get_sfx("male_warcry")
if(user.gender == FEMALE)
if(default_lang == GLOB.all_languages[LANGUAGE_RUSSIAN])
return get_sfx("female_upp_warcry")
else if(default_lang == GLOB.all_languages[LANGUAGE_JAPANESE])
return get_sfx("male_clf_warcry") // ( ͡° ͜ʖ ͡°)
else
return get_sfx("female_warcry")

Expand Down

0 comments on commit b3cc0ff

Please sign in to comment.