Skip to content

Commit

Permalink
fix skeleton latejoin
Browse files Browse the repository at this point in the history
  • Loading branch information
PotatoTomahto committed Jan 30, 2025
1 parent 48b9541 commit cc2268c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion code/__DEFINES/jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
#define ADVENTURER (1<<9)
#define COOK (1<<10)
#define GRABBER (1<<11)
#define BARD (1<<12)
#define BARD (1<<12)
#define CHEESEMAKER (1<<13)
#define MIGRANT (1<<16)
#define BANDIT (1<<17)
Expand All @@ -167,6 +167,11 @@
#define CHURCHLING (1<<2)
#define ORPHAN (1<<3)

#define UNDEAD (1<<10)

#define DEATHKNIGHT (1<<0)
#define SKELETON (1<<1)

#define JCOLOR_NOBLE "#9c40bf"
#define JCOLOR_MERCHANT "#c2b449"
#define JCOLOR_SOLDIER "#b64949"
Expand Down
6 changes: 3 additions & 3 deletions code/modules/jobs/job_types/roguetown/other/deathknight.dm
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/datum/job/roguetown/deathknight
title = "Death Knight"
flag = GRAVETENDER
department_flag = PEASANTS
flag = DEATHKNIGHT
department_flag = UNDEAD
faction = "Station"
total_positions = 0
total_positions = -1
spawn_positions = 0

allowed_sexes = list(MALE, FEMALE)
Expand Down
6 changes: 3 additions & 3 deletions code/modules/jobs/job_types/roguetown/other/skeleton.dm
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/datum/job/roguetown/skeleton
title = "skeleton"
flag = GRAVETENDER
// department_flag = PEASANTS
flag = SKELETON
department_flag = UNDEAD
faction = "Station"
total_positions = 0
total_positions = -1
spawn_positions = 0

allowed_sexes = list(MALE, FEMALE)
Expand Down

0 comments on commit cc2268c

Please sign in to comment.