Skip to content

Commit

Permalink
Merge pull request #22 from EvenInDeathIStillServe/maxchoices
Browse files Browse the repository at this point in the history
Maxes out pilgrim and adventurer choices
  • Loading branch information
GeneralPantsuIsBadAtCoding authored Aug 3, 2024
2 parents ed8dd65 + 9fe1186 commit 4a85b86
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions code/datums/migrants/migrant_role.dm
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@

/datum/migrant_role/pilgrim
name = "Pilgrim"
advclass_cat_rolls = list(CTAG_PILGRIM = 10)
advclass_cat_rolls = list(CTAG_PILGRIM = 20)

/datum/migrant_role/adventurer
name = "Adventurer"
advclass_cat_rolls = list(CTAG_ADVENTURER = 5)
advclass_cat_rolls = list(CTAG_ADVENTURER = 20)

/datum/migrant_role/bandit
name = "Bandit"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ GLOBAL_VAR_INIT(adventurer_hugbox_duration_still, 3 MINUTES)
show_in_credits = FALSE
min_pq = 0
max_pq = null
advclass_cat_rolls = list(CTAG_ADVENTURER = 5)

advclass_cat_rolls = list(CTAG_ADVENTURER = 20)
PQ_boost_divider = 10

wanderer_examine = TRUE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
bypass_lastclass = TRUE
bypass_jobban = FALSE

advclass_cat_rolls = list(CTAG_PILGRIM = 10)
advclass_cat_rolls = list(CTAG_PILGRIM = 20)
PQ_boost_divider = 10

display_order = JDO_PILGRIM
Expand Down

0 comments on commit 4a85b86

Please sign in to comment.