From 1e831112cf3be5f0c03630593abc5afca5e50761 Mon Sep 17 00:00:00 2001 From: Spades Date: Thu, 9 Jun 2016 01:29:16 -0400 Subject: [PATCH 1/2] Fixes #1830 --- code/modules/events/infestation.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/events/infestation.dm b/code/modules/events/infestation.dm index e7afa00109..9074035d59 100644 --- a/code/modules/events/infestation.dm +++ b/code/modules/events/infestation.dm @@ -6,7 +6,7 @@ #define LOC_VAULT 5 #define LOC_CONSTR 6 #define LOC_TECH 7 -#define LOC_TACTICAL 8 +#define LOC_GARDEN 8 #define VERM_MICE 0 #define VERM_LIZARDS 1 @@ -50,9 +50,9 @@ if(LOC_TECH) spawn_area_type = /area/storage/tech locstring = "technical storage" - if(LOC_TACTICAL) - spawn_area_type = /area/security/tactical - locstring = "tactical equipment storage" + if(LOC_GARDEN) + spawn_area_type = /area/hydroponics/garden + locstring = "the public garden" for(var/areapath in typesof(spawn_area_type)) var/area/A = locate(areapath) From 25d61db083e322154830895c19b51acfa69f9778 Mon Sep 17 00:00:00 2001 From: Spades Date: Thu, 9 Jun 2016 01:37:54 -0400 Subject: [PATCH 2/2] Neither Travis nor Byond noticed this. Whoops! No one saw that! :U --- code/modules/events/infestation.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/infestation.dm b/code/modules/events/infestation.dm index 9074035d59..16f2b78521 100644 --- a/code/modules/events/infestation.dm +++ b/code/modules/events/infestation.dm @@ -102,7 +102,7 @@ #undef LOC_HYDRO #undef LOC_VAULT #undef LOC_TECH -#undef LOC_TACTICAL +#undef LOC_GARDEN #undef VERM_MICE #undef VERM_LIZARDS