From 6d1f7fdcbc9b0c1386ee77262a8c65c411ee9d54 Mon Sep 17 00:00:00 2001 From: ike709 Date: Mon, 16 Jun 2025 08:50:23 -0500 Subject: [PATCH] Fix a var type declaration (again) (#29637) Signed-off-by: ike709 --- code/modules/projectiles/guns/throw.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/guns/throw.dm b/code/modules/projectiles/guns/throw.dm index 61deb59015e..6e35b077dc9 100644 --- a/code/modules/projectiles/guns/throw.dm +++ b/code/modules/projectiles/guns/throw.dm @@ -5,7 +5,7 @@ fire_sound_text = "thwock" var/obj/item/to_launch - var/list/valid_projectile_type + var/obj/item/valid_projectile_type var/max_capacity = 1 var/list/loaded_projectiles = list()