From 5c69101766b83958a1743527b9bb70866498c637 Mon Sep 17 00:00:00 2001 From: CollenN Date: Sun, 1 Jun 2014 15:22:50 -0400 Subject: [PATCH] Fixes typo in ion_storm New() I have no idea why you'd want to emag a bog, or how you'd emag a bog. But regardless, you can now properly set the botEmagChance through New(). --- code/modules/events/ion_storm.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/ion_storm.dm b/code/modules/events/ion_storm.dm index af4dbb2c68b..ac7ff3daa4d 100644 --- a/code/modules/events/ion_storm.dm +++ b/code/modules/events/ion_storm.dm @@ -12,7 +12,7 @@ var/ionMessage = null var/ionAnnounceChance = 33 -/datum/round_event/ion_storm/New(var/bogEmagChance = 10, var/announceEvent = ION_RANDOM, var/ionMessage = null, var/ionAnnounceChance = 33) +/datum/round_event/ion_storm/New(var/botEmagChance = 10, var/announceEvent = ION_RANDOM, var/ionMessage = null, var/ionAnnounceChance = 33) src.botEmagChance = botEmagChance src.announceEvent = announceEvent src.ionMessage = ionMessage