From a4fa7a2d68bd2824b9d111f2c8df724f346484ad Mon Sep 17 00:00:00 2001 From: Comicao1 <33708588+Comicao1@users.noreply.github.com> Date: Wed, 8 Feb 2023 19:17:21 -0300 Subject: [PATCH] Cleans a few things --- .../code/game/objects/items/toys.dm | 22 +------------------ 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/modular_splurt/code/game/objects/items/toys.dm b/modular_splurt/code/game/objects/items/toys.dm index 526e505d6f..4a5f81147f 100644 --- a/modular_splurt/code/game/objects/items/toys.dm +++ b/modular_splurt/code/game/objects/items/toys.dm @@ -89,28 +89,12 @@ if(vibrator && enabled) throw_at(get_edge_target_turf(src,pick(GLOB.alldirs)),3,1) playsound(src, 'modular_splurt/sound/lewd/vibrate.ogg', 40, 1, -1) - //if(prob(25)) - // playsound(src.loc, 'modular_splurt/sound/effects/beachball_whine.ogg', 50, 1) /obj/item/toy/beach_ball/syndicate/process() . = ..() if(vibrator && enabled) throwforce = 60 -/obj/item/electropack/vibrator/receive_signal(datum/signal/signal) - if(hidden) - if(!signal || signal.data["code"] != code) - return - - if(last > world.time) - return - - playsound(src.loc, 'modular_splurt/sound/lewd/vibrate.ogg', 50, 1, -1) - - - else - ..() - /obj/item/toy/beach_ball/syndicate/throw_at(atom/target, range, speed, mob/thrower, spin=1, diagonals_first = 0, datum/callback/callback) if(ishuman(thrower)) throwforce = 0 @@ -120,8 +104,4 @@ ..() if(istype(hit_atom, /turf/closed/wall) && throwforce > 0) var/turf/closed/wall/W = hit_atom - W.dismantle_wall() - //if(istype(hit_atom, /mob/living/carbon/human)) - //playsound(src.loc, 'modular_splurt/sound/effects/beachball_huh.ogg', 50, 1) - - + W.dismantle_wall() \ No newline at end of file