mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-21 23:52:12 +00:00
Fixes shells and shit having 300 health instead of 200 (#9524)
This means that you need -100 health to die currently, which is 200 - 300 for most species, which means you need to do 300 damage, which is bullshit.
This commit is contained in:
@@ -116,9 +116,8 @@ var/list/gamemode_cache = list()
|
||||
|
||||
//game_options.txt configs
|
||||
|
||||
var/health_threshold_softcrit = 0
|
||||
var/health_threshold_crit = 0
|
||||
var/health_threshold_dead = -100
|
||||
var/health_threshold_softcrit = 50
|
||||
var/health_threshold_dead = 0
|
||||
|
||||
var/organ_health_multiplier = 1
|
||||
var/organ_regeneration_multiplier = 1
|
||||
@@ -957,8 +956,6 @@ var/list/gamemode_cache = list()
|
||||
value = text2num(value)
|
||||
|
||||
switch(name)
|
||||
if("health_threshold_crit")
|
||||
config.health_threshold_crit = value
|
||||
if("health_threshold_softcrit")
|
||||
config.health_threshold_softcrit = value
|
||||
if("health_threshold_dead")
|
||||
|
||||
Reference in New Issue
Block a user