From 62337a0e4c92265ff872727735946c5076ac91c6 Mon Sep 17 00:00:00 2001 From: Tarmunora <48066662+Tarmunora@users.noreply.github.com> Date: Wed, 4 Oct 2023 00:22:23 -0500 Subject: [PATCH] ion storm twice as likely to emp bots, but guardbots/secbots have a halved chance --- code/modules/events/ion_storm.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/events/ion_storm.dm b/code/modules/events/ion_storm.dm index b565ef68a8ad0..3869ea3c70487 100644 --- a/code/modules/events/ion_storm.dm +++ b/code/modules/events/ion_storm.dm @@ -413,12 +413,11 @@ ABSTRACT_TYPE(/datum/ion_category) alert_prog.send_alert(rand(1,4), TRUE) /datum/ion_category/station_bots - amount = 1 - prob_of_happening = 10 + amount = 2 + prob_of_happening = 20 valid_instance(obj/machinery/bot/bot) - . = ..() && !bot.emagged - + . = ..() && !bot.emagged && (!istype(bot, /obj/machinery/bot/guardbot) && !istype(bot, /obj/machinery/bot/secbot) || prob(50)) build_targets() for_by_tcl(bot, /obj/machinery/bot)