mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 21:48:39 +01:00
Adds an arg to dust() which controls whether it gives a negative moodlet (#94868)
## About The Pull Request Tin, also changes all the remaining positional args to kwargs. ## Why It's Good For The Game More flexibility with this proc is good, you might want to dust someone without giving the negative moodlet ## Changelog Not player-facing
This commit is contained in:
@@ -48,7 +48,7 @@
|
||||
return
|
||||
return ..()
|
||||
|
||||
/mob/living/basic/boss/dust(just_ash, drop_items, force)
|
||||
/mob/living/basic/boss/dust(just_ash, drop_items, give_moodlet, force)
|
||||
if(!force && health > 0)
|
||||
return
|
||||
return ..()
|
||||
|
||||
@@ -200,7 +200,7 @@
|
||||
/mob/living/basic/guardian/gib()
|
||||
death(TRUE)
|
||||
|
||||
/mob/living/basic/guardian/dust(just_ash, drop_items, force)
|
||||
/mob/living/basic/guardian/dust(just_ash, drop_items, give_moodlet, force)
|
||||
death(TRUE)
|
||||
|
||||
/// Link up with a summoner mob.
|
||||
|
||||
@@ -278,7 +278,7 @@
|
||||
/mob/living/basic/revenant/med_hud_set_status()
|
||||
return //we use no hud
|
||||
|
||||
/mob/living/basic/revenant/dust(just_ash, drop_items, force)
|
||||
/mob/living/basic/revenant/dust(just_ash, drop_items, give_moodlet, force)
|
||||
death()
|
||||
|
||||
/mob/living/basic/revenant/gib()
|
||||
|
||||
Reference in New Issue
Block a user