Skip to content

Commit a5d7c9b

Browse files
lavillastrangiatoLa Villa Strangiato
andauthored
whoopsie (#1193)
Co-authored-by: La Villa Strangiato <mangodeity@gmail.com~>
1 parent 3d9e615 commit a5d7c9b

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

code/_globalvars/lists/objects.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ GLOBAL_LIST_INIT(rod_jobs, list(
5151
"Mayor",
5252
"Servant",
5353
"Steward",
54-
"Queen",
54+
"Consort",
5555
"King",
5656
"Prince",
5757
"Hand",

code/controllers/subsystem/familytree.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ SUBSYSTEM_DEF(familytree)
4141
var/excluded_jobs = list(
4242
"Prince",
4343
"Princess",
44-
"Queen",
44+
"Consort",
4545
"King",
4646
"Inquisitor",
4747
)

code/controllers/subsystem/ticker.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ SUBSYSTEM_DEF(ticker)
260260

261261
/datum/controller/subsystem/ticker/proc/checkreqroles()
262262
var/list/readied_jobs = list()
263-
var/list/required_jobs = list("King", "Queen", "Hand")
263+
var/list/required_jobs = list("King", "Hand")
264264
#ifdef DEPLOY_TEST
265265
required_jobs = list()
266266
readied_jobs = list("King")

code/game/gamemodes/roguetown/chaosmode.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
236236
/datum/game_mode/chaosmode/proc/pick_maniac()
237237
restricted_jobs = list("King",
238-
"Queen",
238+
"Consort",
239239
"Prisoner",
240240
"Dungeoneer",
241241
"Witch Hunter",

code/game/gamemodes/roguetown/roguetown.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ GLOBAL_LIST_INIT(roguegamemodes, list("Rebellion", "Vampire Lord", "Extended", "
270270

271271
/datum/game_mode/chaosmode/proc/pick_maniac()
272272
restricted_jobs = list("King",
273-
"Queen",
273+
"Consort",
274274
"Merchant",
275275
"Priest")
276276
antag_candidates = get_players_for_role(ROLE_NBEAST)
@@ -299,7 +299,7 @@ GLOBAL_LIST_INIT(roguegamemodes, list("Rebellion", "Vampire Lord", "Extended", "
299299
/datum/game_mode/chaosmode/proc/pick_cultist()
300300
var/remaining = 3 // 1 leader, 2 lackeys :)
301301
restricted_jobs = list("King",
302-
"Queen",
302+
"Consort",
303303
"Merchant",
304304
"Priest")
305305
antag_candidates = get_players_for_role(ROLE_ZIZOIDCULTIST)

code/game/objects/items/rogueweapons/melee/special.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
if(ishuman(user))
6262
var/mob/living/carbon/human/HU = user
6363

64-
if((HU.job != "King") && (HU.job != "Queen") && (HU.job != "Hand"))
64+
if((HU.job != "King") && (HU.job != "Consort") && (HU.job != "Hand"))
6565
to_chat(user, "<span class='danger'>The rod doesn't obey me.</span>")
6666
return
6767

code/modules/antagonists/roguetown/villain/vampirelord.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ GLOBAL_LIST_EMPTY(vampire_objects)
882882

883883
/datum/objective/vampirelord/infiltrate/two/check_completion()
884884
var/datum/game_mode/chaosmode/C = SSticker.mode
885-
var/list/noblejobs = list("King", "Queen", "Prince", "Princess", "Hand", "Steward")
885+
var/list/noblejobs = list("King", "Consort", "Prince", "Princess", "Hand", "Steward")
886886
for(var/datum/mind/V in C.vampires)
887887
if(V.current.job in noblejobs)
888888
return TRUE

code/modules/jobs/job_types/roguetown/church/priest.dm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,17 +108,17 @@
108108
if(HL.job == "King")
109109
HL.job = "Ex-King"
110110
if(HL.mind)
111-
if(HL.mind.assigned_role == "Queen")
112-
HL.mind.assigned_role = "Ex-Queen"
113-
if(HL.job == "Queen")
114-
HL.job = "Ex-Queen"
111+
if(HL.mind.assigned_role == "Consort")
112+
HL.mind.assigned_role = "Ex-Consort"
113+
if(HL.job == "Consort")
114+
HL.job = "Ex-Consort"
115115
switch(HU.gender)
116116
if("male")
117117
HU.mind.assigned_role = "King"
118118
HU.job = "King"
119119
if("female")
120-
HU.mind.assigned_role = "Queen"
121-
HU.job = "Queen"
120+
HU.mind.assigned_role = "Consort"
121+
HU.job = "Consort"
122122
SSticker.rulermob = HU
123123
var/dispjob = mind.assigned_role
124124
GLOB.badomens -= "nolord"

code/modules/jobs/jobs.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ GLOBAL_LIST_INIT(nonhuman_positions, list(
6161

6262
GLOBAL_LIST_INIT(noble_positions, list(
6363
"King",
64-
"Queen",
64+
"Consort",
6565
"Hand",
6666
"Prince",
6767
"Captain",

0 commit comments

Comments
 (0)