Skip to content

Commit

Permalink
soul removal (#3966)
Browse files Browse the repository at this point in the history
## About The Pull Request
every life tick migos had a 10 percent chance to make a noise. this has
been reduced to 1
## Changelog

:cl:
balance: migos make less noise
/:cl:
  • Loading branch information
Erikafox authored Jan 6, 2025
1 parent 527263e commit 2535e4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/mob/living/simple_animal/hostile/netherworld.dm
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@
deathmessage = "wails as its form turns into a pulpy mush."
deathsound = 'sound/voice/hiss6.ogg'
phaser = FALSE
var/sound_prob = 1

/mob/living/simple_animal/hostile/netherworld/migo/asteroid
faction = list("mining")
Expand All @@ -147,7 +148,7 @@
..()
if(stat)
return
if(prob(10))
if(prob(sound_prob))
var/chosen_sound = pick(migo_sounds)
playsound(src, chosen_sound, 50, TRUE)

Expand Down

0 comments on commit 2535e4d

Please sign in to comment.