mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-17 02:54:44 +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:
@@ -170,7 +170,7 @@
|
||||
playsound(src.loc, 'sound/effects/splat.ogg', 25, TRUE)
|
||||
target.emote("scream")
|
||||
target.add_splatter_floor()
|
||||
target.adjustBruteLoss(30)
|
||||
target.adjust_brute_loss(30)
|
||||
target.setDir(2)
|
||||
var/matrix/m180 = matrix(target.transform)
|
||||
m180.Turn(180)
|
||||
@@ -193,7 +193,7 @@
|
||||
buckled_mob.visible_message(span_warning("[buckled_mob] struggles to break free from [src]!"),\
|
||||
span_notice("You struggle to break free from [src], exacerbating your wounds! (Stay still for two minutes.)"),\
|
||||
span_hear("You hear a wet squishing noise.."))
|
||||
buckled_mob.adjustBruteLoss(30)
|
||||
buckled_mob.adjust_brute_loss(30)
|
||||
if(!do_after(buckled_mob, 2 MINUTES, target = src, hidden = TRUE))
|
||||
if(buckled_mob?.buckled)
|
||||
to_chat(buckled_mob, span_warning("You fail to free yourself!"))
|
||||
@@ -201,7 +201,7 @@
|
||||
return ..()
|
||||
|
||||
/obj/structure/kitchenspike/post_unbuckle_mob(mob/living/buckled_mob)
|
||||
buckled_mob.adjustBruteLoss(30)
|
||||
buckled_mob.adjust_brute_loss(30)
|
||||
INVOKE_ASYNC(buckled_mob, TYPE_PROC_REF(/mob, emote), "scream")
|
||||
buckled_mob.AdjustParalyzed(20)
|
||||
var/matrix/m180 = matrix(buckled_mob.transform)
|
||||
|
||||
Reference in New Issue
Block a user