Skip to content

Commit

Permalink
Nerfs the required synth blunt T3 wound's burn wound to be T1, also s…
Browse files Browse the repository at this point in the history
…hortens heating time (#2431)

* sdwedw

* why did i make this so high??
  • Loading branch information
nikothedude authored and StealsThePRs committed May 11, 2024
1 parent 70799df commit 0d2f61d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
RETURN_TYPE(/datum/wound/burn/robotic/overheat)
for (var/datum/wound/found_wound as anything in limb.wounds)
var/datum/wound_pregen_data/pregen_data = found_wound.get_pregen_data()
if (pregen_data.wound_series == WOUND_SERIES_METAL_BURN_OVERHEAT && found_wound.severity >= WOUND_SEVERITY_SEVERE) // meh solution but whateva
if (pregen_data.wound_series == WOUND_SERIES_METAL_BURN_OVERHEAT && found_wound.severity >= WOUND_SEVERITY_MODERATE) // meh solution but whateva
return found_wound
return null

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,10 @@
if (HAS_TRAIT(src, TRAIT_WOUND_SCANNED))
delay_mult *= 0.75

if (!welder.use_tool(target = victim, user = user, delay = 7 SECONDS * delay_mult, volume = 50, extra_checks = CALLBACK(src, PROC_REF(still_exists))))
if (!welder.use_tool(target = victim, user = user, delay = 3 SECONDS * delay_mult, volume = 50, extra_checks = CALLBACK(src, PROC_REF(still_exists))))
return TRUE

var/wound_path = /datum/wound/burn/robotic/overheat/severe
var/wound_path = /datum/wound/burn/robotic/overheat/moderate
if (user != victim && user.combat_mode)
wound_path = /datum/wound/burn/robotic/overheat/critical // it really isnt that bad, overheat wounds are a bit funky
user.visible_message(span_danger("[user] heats [victim]'s [limb.plaintext_zone] aggressively, overheating it far beyond the necessary point!"), \
Expand Down

0 comments on commit 0d2f61d

Please sign in to comment.