Adds configuration options to economy pay & prices

This commit is contained in:
DragonTrance
2022-06-08 21:39:27 -04:00
parent 2b6fb195a2
commit c771649850
4 changed files with 103 additions and 13 deletions
+4 -1
View File
@@ -62,13 +62,16 @@
var/list/alt_titles = list()
/// A multiplier for how much a person gets each paycheck
var/base_paycheck_multiplier = BASEPAY_DEFAULT
var/base_paycheck_multiplier = 1.2
var/override_roundstart_spawn = null //Where the player spawns at roundstart if defined
//whitelisting
var/whitelist_type = ""
/datum/job/New()
base_paycheck_multiplier = CONFIG_GET(number/economy_job_rate_default)
//Only override this proc
//H is usually a human unless an /equip override transformed it
/datum/job/proc/after_spawn(mob/living/H, mob/M, latejoin = FALSE)