From ea58549348f4aab781681a985972d7075ab4ceb7 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sun, 15 Mar 2020 18:33:25 +0000 Subject: [PATCH] Fix inability to use submachine guns --- mods/ctf/ctf_classes/classes.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mods/ctf/ctf_classes/classes.lua b/mods/ctf/ctf_classes/classes.lua index 5502488..76698b3 100644 --- a/mods/ctf/ctf_classes/classes.lua +++ b/mods/ctf/ctf_classes/classes.lua @@ -15,7 +15,7 @@ ctf_classes.register("knight", { allowed_guns = { "shooter_guns:pistol", - "shooter_guns:smg", + "shooter_guns:machine_gun", "shooter_guns:shotgun", }, }, @@ -43,7 +43,7 @@ ctf_classes.register("shooter", { allowed_guns = { "shooter_guns:pistol", "shooter_guns:rifle", - "shooter_guns:smg", + "shooter_guns:machine_gun", "shooter_guns:shotgun", }, @@ -70,7 +70,7 @@ ctf_classes.register("medic", { allowed_guns = { "shooter_guns:pistol", - "shooter_guns:smg", + "shooter_guns:machine_gun", "shooter_guns:shotgun", }, }, @@ -93,7 +93,7 @@ ctf_classes.register("rocketeer", { allowed_guns = { "shooter_guns:pistol", - "shooter_guns:smg", + "shooter_guns:machine_gun", "shooter_guns:shotgun", },