From d1d7f4eafd03ff3fe03ce7569b01455b3c6d1917 Mon Sep 17 00:00:00 2001 From: keronshb Date: Fri, 10 Jun 2022 00:25:32 -0400 Subject: [PATCH] Handles --- code/modules/antagonists/gang/gang.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/antagonists/gang/gang.dm b/code/modules/antagonists/gang/gang.dm index ea81c8b1af..050754a91e 100644 --- a/code/modules/antagonists/gang/gang.dm +++ b/code/modules/antagonists/gang/gang.dm @@ -67,6 +67,11 @@ if(handler) // if we have a handler, the handler should track this gang handler.gangs += my_gang my_gang.current_theme = handler.current_theme + else if(GLOB.families_override_theme) + my_gang.current_theme = new GLOB.families_override_theme + else + var/theme_to_use = pick(subtypesof(/datum/gang_theme)) + my_gang.current_theme = new theme_to_use my_gang.name = gang_name my_gang.gang_id = gang_id my_gang.acceptable_clothes = acceptable_clothes.Copy()