From c8dfe14d8f217fe623981b48f84701ff6ca85a68 Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Wed, 25 Mar 2026 17:29:15 -0400 Subject: [PATCH] Fixes being unable to put a horn in a clown car (#95506) ## About The Pull Request Calls parent ## Why It's Good For The Game fixes #95499 --- code/modules/vehicles/cars/clowncar.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vehicles/cars/clowncar.dm b/code/modules/vehicles/cars/clowncar.dm index 6cff8a743f6..f80219e36d9 100644 --- a/code/modules/vehicles/cars/clowncar.dm +++ b/code/modules/vehicles/cars/clowncar.dm @@ -101,7 +101,7 @@ /obj/vehicle/sealed/car/clowncar/item_interaction(mob/living/user, obj/item/tool, list/modifiers) if(!istype(tool, /obj/item/food/grown/banana)) - return + return ..() var/obj/item/food/grown/banana/banana = tool repair_damage(banana.seed.potency) to_chat(user, span_danger("You use [banana] to repair [src]!"))