mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
Fix out-of-order role candidate options
fixup pol commit
This commit is contained in:
@@ -35,8 +35,8 @@
|
|||||||
#define BE_RAIDER 0x800
|
#define BE_RAIDER 0x800
|
||||||
#define BE_PLANT 0x1000
|
#define BE_PLANT 0x1000
|
||||||
#define BE_MUTINEER 0x2000
|
#define BE_MUTINEER 0x2000
|
||||||
#define BE_PAI 0x4000
|
#define BE_LOYALIST 0x4000
|
||||||
#define BE_LOYALIST 0x8000
|
#define BE_PAI 0x8000
|
||||||
|
|
||||||
var/list/be_special_flags = list(
|
var/list/be_special_flags = list(
|
||||||
"Traitor" = BE_TRAITOR,
|
"Traitor" = BE_TRAITOR,
|
||||||
@@ -45,7 +45,6 @@ var/list/be_special_flags = list(
|
|||||||
"Wizard" = BE_WIZARD,
|
"Wizard" = BE_WIZARD,
|
||||||
"Malf AI" = BE_MALF,
|
"Malf AI" = BE_MALF,
|
||||||
"Revolutionary" = BE_REV,
|
"Revolutionary" = BE_REV,
|
||||||
"Loyalist" = BE_LOYALIST,
|
|
||||||
"Xenomorph" = BE_ALIEN,
|
"Xenomorph" = BE_ALIEN,
|
||||||
"Positronic Brain" = BE_AI,
|
"Positronic Brain" = BE_AI,
|
||||||
"Cultist" = BE_CULTIST,
|
"Cultist" = BE_CULTIST,
|
||||||
@@ -54,7 +53,8 @@ var/list/be_special_flags = list(
|
|||||||
"Raider" = BE_RAIDER,
|
"Raider" = BE_RAIDER,
|
||||||
"Diona" = BE_PLANT,
|
"Diona" = BE_PLANT,
|
||||||
"Mutineer" = BE_MUTINEER,
|
"Mutineer" = BE_MUTINEER,
|
||||||
"pAI" = BE_PAI
|
"Loyalist" = BE_LOYALIST,
|
||||||
|
"pAI" = BE_PAI,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -14,8 +14,9 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set
|
|||||||
"ninja" = 1, // 10
|
"ninja" = 1, // 10
|
||||||
"raider" = 1, // 11
|
"raider" = 1, // 11
|
||||||
"diona" = 1, // 12
|
"diona" = 1, // 12
|
||||||
"loyalist" = 1, // 13
|
"mutineer" = 1, // 13
|
||||||
"pAI candidate" = 1, // -- TLE // 14
|
"loyalist" = 1, // 14
|
||||||
|
"pAI candidate" = 1, // 15
|
||||||
)
|
)
|
||||||
|
|
||||||
/datum/category_item/player_setup_item/antagonism/candidacy
|
/datum/category_item/player_setup_item/antagonism/candidacy
|
||||||
|
|||||||
Reference in New Issue
Block a user