Skip to content

Commit

Permalink
It works! (#26862)
Browse files Browse the repository at this point in the history
  • Loading branch information
LetXxx committed Sep 22, 2024
1 parent 2fb0a18 commit 80d2d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/gamemodes/miniantags/tourist/tourist_arrivals.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 80d2d78

Please sign in to comment.