Code improvements

This commit is contained in:
Putnam
2019-12-29 21:01:55 -08:00
parent ddf233e0d5
commit cc087b990c
6 changed files with 22 additions and 21 deletions
-9
View File
@@ -119,12 +119,3 @@
//belly sound pref things
#define NORMIE_HEARCHECK 4
// Voting stuff (move this somewhere else eventually probs)
#define PLURALITY_VOTING 0
#define APPROVAL_VOTING 1
#define RANKED_CHOICE_VOTING 2
// Dynamic storyteller stuff (see above, move later)
#define NO_ASSASSIN (1<<0)
#define WAROPS_ALWAYS_ALLOWED (1<<1)
+14
View File
@@ -0,0 +1,14 @@
#define CURRENT_LIVING_PLAYERS 1
#define CURRENT_LIVING_ANTAGS 2
#define CURRENT_DEAD_PLAYERS 3
#define CURRENT_OBSERVERS 4
#define NO_ASSASSIN (1<<0)
#define WAROPS_ALWAYS_ALLOWED (1<<1)
#define ONLY_RULESET (1<<0)
#define HIGHLANDER_RULESET (1<<1)
#define TRAITOR_RULESET (1<<2)
#define MINOR_RULESET (1<<3)
#define RULESET_STOP_PROCESSING 1
+5
View File
@@ -0,0 +1,5 @@
// Voting stuff (move this somewhere else eventually probs)
#define PLURALITY_VOTING 0
#define APPROVAL_VOTING 1
#define RANKED_CHOICE_VOTING 2