From 4e68b0b20872b5cfa2cd3a636e03e8712d0887d3 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Wed, 17 Jul 2024 07:58:04 +0100 Subject: [PATCH] You can properly aim mining bombs at turfs now (#85006) ## About The Pull Request Due to lacking can_target_turfs mining bombs currently travel until they hit a solid object or reach their range, making aiming often frustrating. ## Why It's Good For The Game This doesn't have a balance impact but makes mining with them a bit easier as you can actually position them where you want. ## Changelog :cl: qol: You can properly aim mining bombs at turfs now /:cl: --- code/modules/mod/modules/modules_supply.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mod/modules/modules_supply.dm b/code/modules/mod/modules/modules_supply.dm index 616534cd3dd..18c1ac69267 100644 --- a/code/modules/mod/modules/modules_supply.dm +++ b/code/modules/mod/modules/modules_supply.dm @@ -561,6 +561,7 @@ light_power = 1 light_color = COLOR_LIGHT_ORANGE embed_type = null + can_hit_turfs = TRUE /obj/projectile/bullet/mining_bomb/Initialize(mapload) . = ..()