Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions maps/kleibkhar/kleibkhar_jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
announced = FALSE
forced_spawnpoint = /decl/spawnpoint/chargen

// Currently, we don't want colonists to spawn with cash on hand, so we return 0 credits.
/datum/job/colonist/create_cash_on_hand(var/mob/living/carbon/human/H, var/datum/money_account/M)
return 0

/decl/hierarchy/outfit/job/kleibkhar
name = "Job - Kleibkhar Colonist"
id_type = /obj/item/card/id/network
Expand Down
3 changes: 3 additions & 0 deletions maps/outreach/outreach_jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
announced = FALSE
forced_spawnpoint = /decl/spawnpoint/chargen

// Currently, we don't want colonists to spawn with cash on hand, so we return 0 credits.
/datum/job/colonist/create_cash_on_hand(var/mob/living/carbon/human/H, var/datum/money_account/M)
return 0
/decl/hierarchy/outfit/job/outreach
name = "Job - Outreach Colonist"
id_type = /obj/item/card/id/network
Expand Down