From 58b63f33f298d4df820bb1ae036476a4f9b3b2a4 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Thu, 20 Jun 2013 21:29:14 +0100 Subject: [PATCH] * Fixed spelling typos. Tratior -> Traitor --- code/controllers/configuration.dm | 2 +- code/datums/mind.dm | 2 +- code/game/gamemodes/game_mode.dm | 2 +- code/game/gamemodes/objective.dm | 2 +- code/game/gamemodes/traitor/traitor.dm | 2 +- code/modules/admin/topic.dm | 2 +- code/modules/admin/verbs/one_click_antag.dm | 8 ++++---- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index 1dbe057a6ba..934f1513bab 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -79,7 +79,7 @@ var/traitor_scaling_coeff = 6 //how much does the amount of players get divided by to determine traitors var/changeling_scaling_coeff = 10 //how much does the amount of players get divided by to determine changelings - var/protect_roles_from_antagonist = 0// If security and such can be tratior/cult/other + var/protect_roles_from_antagonist = 0// If security and such can be traitor/cult/other var/allow_latejoin_antagonists = 0 // If late-joining players can be traitor/changeling var/continuous_round_rev = 0 // Gamemodes which end instantly will instead keep on going until the round ends by escape shuttle or nuke. var/continuous_round_wiz = 0 diff --git a/code/datums/mind.dm b/code/datums/mind.dm index a30866ccc60..a1bf8c120ee 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -960,7 +960,7 @@ datum/mind special_role = "malfunction" current.icon_state = "ai-malf" - proc/make_Tratior() + proc/make_Traitor() if(!(src in ticker.mode.traitors)) ticker.mode.traitors += src special_role = "traitor" diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 2cf88fb6b1a..e8a0edfd1f5 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -22,7 +22,7 @@ var/explosion_in_progress = 0 //sit back and relax var/list/datum/mind/modePlayer = new var/list/restricted_jobs = list() // Jobs it doesn't make sense to be. I.E chaplain or AI cultist - var/list/protected_jobs = list() // Jobs that can't be tratiors because + var/list/protected_jobs = list() // Jobs that can't be traitors because var/required_players = 0 var/required_enemies = 0 var/recommended_enemies = 0 diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index db12423bfce..765fd9e7c9c 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -226,7 +226,7 @@ datum/objective/escape if(!location) return 0 - if(istype(location, /turf/simulated/shuttle/floor4)) // Fails tratiors if they are in the shuttle brig -- Polymorph + if(istype(location, /turf/simulated/shuttle/floor4)) // Fails traitors if they are in the shuttle brig -- Polymorph return 0 var/area/check_area = location.loc diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm index ae9f09fc316..0263213d4f2 100644 --- a/code/game/gamemodes/traitor/traitor.dm +++ b/code/game/gamemodes/traitor/traitor.dm @@ -84,7 +84,7 @@ if(character.client.prefs.be_special & BE_TRAITOR) if(!jobban_isbanned(character.client, "traitor") && !jobban_isbanned(character.client, "Syndicate")) if(!(character.job in ticker.mode.restricted_jobs)) - character.mind.make_Tratior() + character.mind.make_Traitor() ..() /datum/game_mode/proc/forge_traitor_objectives(var/datum/mind/traitor) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index bca83273a16..971eb370f70 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -10,7 +10,7 @@ switch(href_list["makeAntag"]) if("1") log_admin("[key_name(usr)] has spawned a traitor.") - if(!src.makeTratiors()) + if(!src.makeTraitors()) usr << "\red Unfortunatly there were no candidates available" if("2") log_admin("[key_name(usr)] has spawned a changeling.") diff --git a/code/modules/admin/verbs/one_click_antag.dm b/code/modules/admin/verbs/one_click_antag.dm index e1285d865f9..e3a54db7ddb 100644 --- a/code/modules/admin/verbs/one_click_antag.dm +++ b/code/modules/admin/verbs/one_click_antag.dm @@ -54,7 +54,7 @@ client/proc/one_click_antag() return 0 -/datum/admins/proc/makeTratiors() +/datum/admins/proc/makeTraitors() var/datum/game_mode/traitor/temp = new if(config.protect_roles_from_antagonist) @@ -73,11 +73,11 @@ client/proc/one_click_antag() candidates += applicant if(candidates.len) - var/numTratiors = min(candidates.len, 3) + var/numTraitors = min(candidates.len, 3) - for(var/i = 0, i