From 80d2d78a9a423bfcc98d66d49b4a9cd62a9dbb01 Mon Sep 17 00:00:00 2001 From: Pedro <79126660+LetXxx@users.noreply.github.com> Date: Sun, 22 Sep 2024 20:00:57 -0300 Subject: [PATCH] It works! (#26862) --- code/game/gamemodes/miniantags/tourist/tourist_arrivals.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/miniantags/tourist/tourist_arrivals.dm b/code/game/gamemodes/miniantags/tourist/tourist_arrivals.dm index 150f169af49..545b67f3a9d 100644 --- a/code/game/gamemodes/miniantags/tourist/tourist_arrivals.dm +++ b/code/game/gamemodes/miniantags/tourist/tourist_arrivals.dm @@ -78,7 +78,7 @@ M.mind.special_role = SPECIAL_ROLE_TOURIST // Rolls a 20% probability, checks if 3 tourists have been made into tot and check if there's space for a new tot! // If any is false, we don't make a new tourist tot - if(prob(chance) && tot_number < 3 && antag_count < max_antag && (SPECIAL_ROLE_TRAITOR in M.client.prefs.be_special) && !jobban_isbanned(M, SPECIAL_ROLE_TRAITOR)) + if(prob(chance) && tot_number < 3 && antag_count < max_antag && (ROLE_TRAITOR in M.client.prefs.be_special) && !jobban_isbanned(M, ROLE_TRAITOR)) if(player_old_enough_antag(M.client, ROLE_TRAITOR)) tot_number++ M.mind.add_antag_datum(/datum/antagonist/traitor)