From 8d8a56cbb367fbf3df723f176eca9a7c0c9aa35f Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Wed, 3 Jun 2026 18:14:06 -0400 Subject: [PATCH] Material spears do not erroneously drop force_unwielded (#96321) ## About The Pull Request Change var when changing to not null ## Why It's Good For The Game 14 damage weapon that attacks two tiles away: ## Changelog :cl: fix: Material spears no longer partially avoid the force malus from being unwielded /:cl: --- code/datums/components/twohanded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/twohanded.dm b/code/datums/components/twohanded.dm index 0db3642eb60..afcc8305fb5 100644 --- a/code/datums/components/twohanded.dm +++ b/code/datums/components/twohanded.dm @@ -119,7 +119,7 @@ src.force_multiplier = force_multiplier if(!isnull(force_wielded)) src.force_wielded = force_wielded - if(isnull(force_unwielded)) + if(!isnull(force_unwielded)) src.force_unwielded = force_unwielded if(icon_wielded) src.icon_wielded = icon_wielded