diff --git a/modular_zzplurt/code/modules/lewd/interaction_menu/interactions/lewd/unholy/fart.dm b/modular_zzplurt/code/modules/lewd/interaction_menu/interactions/lewd/unholy/fart.dm index 09d31e371db31..733d447c72b8f 100644 --- a/modular_zzplurt/code/modules/lewd/interaction_menu/interactions/lewd/unholy/fart.dm +++ b/modular_zzplurt/code/modules/lewd/interaction_menu/interactions/lewd/unholy/fart.dm @@ -19,7 +19,7 @@ "You're forced to smell %USER%'s fart", "%USER%'s flatulence fills your nostrils" ) - sound_possible = GLOB.brap_noises + sound_possible = list() sound_range = 1 sound_use = TRUE user_pleasure = 0 @@ -27,6 +27,10 @@ user_arousal = 2 target_arousal = 2 +/datum/interaction/lewd/unholy/facefart/New() + sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression + . = ..() + /datum/interaction/lewd/unholy/crotchfart name = "Crotch Fart" description = "Fart on their crotch." @@ -47,7 +51,7 @@ "You feel %USER%'s fart on your groin", "%USER%'s flatulence washes over your genitals" ) - sound_possible = GLOB.brap_noises + sound_possible = list() sound_range = 1 sound_use = TRUE user_pleasure = 0 @@ -55,6 +59,10 @@ user_arousal = 3 target_arousal = 4 +/datum/interaction/lewd/unholy/crotchfart/New() + sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression + . = ..() + /datum/interaction/lewd/unholy/fartfuck name = "Fart Fuck" description = "Fuck their ass + fart." @@ -88,6 +96,7 @@ 'modular_zzplurt/sound/interactions/bang2.ogg', 'modular_zzplurt/sound/interactions/bang3.ogg' ) + sound_possible = list() sound_range = 1 sound_use = TRUE user_pleasure = 6 @@ -95,6 +104,10 @@ user_arousal = 8 target_arousal = 6 +/datum/interaction/lewd/unholy/fartfuck/New() + sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression + . = ..() + /datum/interaction/lewd/unholy/fartfuck/post_interaction(mob/living/carbon/human/user, mob/living/carbon/human/target) . = ..() conditional_pref_sound(user, pick('modular_zzplurt/sound/interactions/bang1.ogg', @@ -125,10 +138,14 @@ "You feel %USER%'s mouth pulling gas from your hole", "%USER% inhales your flatulence eagerly" ) - sound_possible = GLOB.brap_noises + sound_possible = list() sound_range = 1 sound_use = TRUE user_pleasure = 0 target_pleasure = 3 user_arousal = 4 target_arousal = 5 + +/datum/interaction/lewd/unholy/suck_fart/New() + sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression + . = ..() diff --git a/modular_zzplurt/code/modules/lewd/interaction_menu/interactions/lewd/unholy/scat.dm b/modular_zzplurt/code/modules/lewd/interaction_menu/interactions/lewd/unholy/scat.dm index 6b8cb5de122e8..67fa5ee9e9bbb 100644 --- a/modular_zzplurt/code/modules/lewd/interaction_menu/interactions/lewd/unholy/scat.dm +++ b/modular_zzplurt/code/modules/lewd/interaction_menu/interactions/lewd/unholy/scat.dm @@ -19,7 +19,7 @@ "You're forced to experience %USER%'s mess", "%USER%'s waste covers your face" ) - sound_possible = GLOB.brap_noises + sound_possible = list() sound_range = 1 sound_use = TRUE user_pleasure = 0 @@ -27,6 +27,10 @@ user_arousal = 2 target_arousal = 2 +/datum/interaction/lewd/unholy/faceshit/New() + sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression + . = ..() + /datum/interaction/lewd/unholy/crotchshit name = "Crotch Shit" description = "Shit on their crotch." @@ -47,7 +51,7 @@ "You feel %USER%'s mess on your groin", "%USER%'s waste covers your genitals" ) - sound_possible = GLOB.brap_noises + sound_possible = list() sound_range = 1 sound_use = TRUE user_pleasure = 0 @@ -95,6 +99,10 @@ user_arousal = 8 target_arousal = 6 +/datum/interaction/lewd/unholy/shitfuck/New() + sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression + . = ..() + /datum/interaction/lewd/unholy/shitfuck/post_interaction(mob/living/carbon/human/user, mob/living/carbon/human/target) . = ..() conditional_pref_sound(user, pick('modular_zzplurt/sound/interactions/bang1.ogg', @@ -125,10 +133,14 @@ "You feel %USER%'s mouth pulling your mess from your hole", "%USER% eagerly consumes your waste" ) - sound_possible = GLOB.brap_noises + sound_possible = list() sound_range = 1 sound_use = TRUE user_pleasure = 0 target_pleasure = 3 user_arousal = 4 target_arousal = 5 + +/datum/interaction/lewd/unholy/suck_shit/New() + sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression + . = ..()