From 9a88900511e3642c402a2e0a459b4dba6bbdbc03 Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Sun, 10 Aug 2025 15:10:44 -0500 Subject: [PATCH] Grand Pianos are Climbable (#92414) --- code/modules/instruments/stationary.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/instruments/stationary.dm b/code/modules/instruments/stationary.dm index c9b82639240..621ecc664ed 100644 --- a/code/modules/instruments/stationary.dm +++ b/code/modules/instruments/stationary.dm @@ -46,6 +46,8 @@ /obj/structure/musician/piano/Initialize(mapload) . = ..() AddElement(/datum/element/falling_hazard, damage = 60, wound_bonus = 10, hardhat_safety = FALSE, crushes = TRUE, impact_sound = 'sound/effects/piano_hit.ogg') + AddElement(/datum/element/climbable) + AddElement(/datum/element/elevation, pixel_shift = 10) /obj/structure/musician/piano/play_attack_sound(damage_amount, damage_type = BRUTE, damage_flag = 0) switch(damage_type)