mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-13 09:05:11 +01:00
Merge remote-tracking branch 'tgstation/master' into upstream-2025-11-29
# Conflicts: # _maps/RandomRuins/SpaceRuins/derelict_sulaco.dmm # _maps/RandomRuins/SpaceRuins/garbagetruck2.dmm # _maps/map_files/CatwalkStation/CatwalkStation_2023.dmm # _maps/map_files/tramstation/tramstation.dmm # code/_onclick/hud/new_player.dm # code/datums/components/squashable.dm # code/datums/diseases/advance/symptoms/heal.dm # code/datums/diseases/chronic_illness.dm # code/datums/status_effects/buffs.dm # code/datums/status_effects/debuffs/drunk.dm # code/datums/status_effects/debuffs/stamcrit.dm # code/game/machinery/computer/crew.dm # code/game/objects/items/devices/scanners/health_analyzer.dm # code/game/objects/items/wall_mounted.dm # code/game/turfs/closed/indestructible.dm # code/modules/admin/view_variables/filterrific.dm # code/modules/antagonists/heretic/influences.dm # code/modules/cargo/orderconsole.dm # code/modules/client/preferences.dm # code/modules/events/space_vines/vine_mutations.dm # code/modules/mob/dead/new_player/new_player.dm # code/modules/mob/living/carbon/human/death.dm # code/modules/mob/living/carbon/human/species_types/jellypeople.dm # code/modules/mob/living/damage_procs.dm # code/modules/mob/living/living.dm # code/modules/mob_spawn/ghost_roles/mining_roles.dm # code/modules/mob_spawn/mob_spawn.dm # code/modules/projectiles/ammunition/energy/laser.dm # code/modules/projectiles/guns/ballistic/launchers.dm # code/modules/projectiles/guns/energy/laser.dm # code/modules/reagents/chemistry/machinery/chem_dispenser.dm # code/modules/reagents/chemistry/reagents/cat2_medicine_reagents.dm # code/modules/reagents/chemistry/reagents/drinks/alcohol_reagents.dm # code/modules/reagents/chemistry/reagents/medicine_reagents.dm # code/modules/surgery/healing.dm # code/modules/unit_tests/designs.dm # icons/mob/inhands/items_lefthand.dmi # icons/mob/inhands/items_righthand.dmi # tgui/packages/tgui/interfaces/ChemDispenser.tsx
This commit is contained in:
@@ -336,9 +336,9 @@
|
||||
post_heal_effects(max(previous_damage - affecting.get_damage(), 0), patient, user)
|
||||
return TRUE
|
||||
|
||||
/// Healing a simple mob, just an adjustbruteloss call
|
||||
/// Healing a simple mob, just an adjust_brute_loss call
|
||||
/obj/item/stack/medical/proc/heal_simplemob(mob/living/patient, mob/living/user)
|
||||
patient.adjustBruteLoss(-1 * (heal_brute * patient.maxHealth / 100))
|
||||
patient.adjust_brute_loss(-1 * (heal_brute * patient.maxHealth / 100))
|
||||
user.visible_message(
|
||||
span_green("[user] applies [src] on [patient]."),
|
||||
span_green("You apply [src] on [patient]."),
|
||||
@@ -773,7 +773,7 @@
|
||||
/obj/item/stack/medical/poultice/post_heal_effects(amount_healed, mob/living/carbon/healed_mob, mob/living/user)
|
||||
. = ..()
|
||||
playsound(src, 'sound/misc/soggy.ogg', 30, TRUE)
|
||||
healed_mob.adjustOxyLoss(amount_healed)
|
||||
healed_mob.adjust_oxy_loss(amount_healed)
|
||||
|
||||
/obj/item/stack/medical/bandage
|
||||
name = "first aid bandage"
|
||||
|
||||
@@ -151,7 +151,7 @@ GLOBAL_LIST_INIT(metal_recipes, list ( \
|
||||
new/datum/stack_recipe("telescreen turbine frame", /obj/item/wallframe/telescreen/turbine, 7, crafting_flags = NONE, category = CAT_STRUCTURE), \
|
||||
new/datum/stack_recipe("telescreen engine frame", /obj/item/wallframe/telescreen/engine, 7, crafting_flags = NONE, category = CAT_STRUCTURE), \
|
||||
new/datum/stack_recipe("telescreen auxbase frame", /obj/item/wallframe/telescreen/auxbase, 7, crafting_flags = NONE, category = CAT_STRUCTURE), \
|
||||
new/datum/stack_recipe("tram controller frame", /obj/item/wallframe/tram/controller, 20, crafting_flags = NONE, category = CAT_STRUCTURE), \
|
||||
new/datum/stack_recipe("tram controller frame", /obj/item/wallframe/tram, 20, crafting_flags = NONE, category = CAT_STRUCTURE), \
|
||||
new/datum/stack_recipe("tram display frame", /obj/item/wallframe/indicator_display, 7, crafting_flags = NONE, category = CAT_STRUCTURE), \
|
||||
null, \
|
||||
new/datum/stack_recipe("iron door", /obj/structure/mineral_door/iron, 20, time = 5 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ONE_PER_TURF | CRAFT_ON_SOLID_GROUND | CRAFT_APPLIES_MATS, category = CAT_DOORS), \
|
||||
|
||||
@@ -166,7 +166,7 @@
|
||||
|
||||
if(issilicon(interacting_with))
|
||||
var/mob/living/silicon/robotic_pal = interacting_with
|
||||
var/robot_is_damaged = robotic_pal.getBruteLoss()
|
||||
var/robot_is_damaged = robotic_pal.get_brute_loss()
|
||||
|
||||
if(!robot_is_damaged)
|
||||
user.balloon_alert(user, "[robotic_pal] is not damaged!")
|
||||
@@ -178,7 +178,7 @@
|
||||
if(!do_after(user, 3 SECONDS, target = robotic_pal))
|
||||
return ITEM_INTERACT_BLOCKING
|
||||
|
||||
robotic_pal.adjustBruteLoss(-object_repair_value)
|
||||
robotic_pal.adjust_brute_loss(-object_repair_value)
|
||||
use(1)
|
||||
to_chat(user, span_notice("You finish repairing [interacting_with] with [src]."))
|
||||
return ITEM_INTERACT_SUCCESS
|
||||
|
||||
Reference in New Issue
Block a user