Update classes.lua

This commit is contained in:
olliy 2021-04-30 01:20:51 +05:00 committed by GitHub
parent bdfc9d5ecd
commit b2ea5c6c8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -153,13 +153,13 @@ ctf_classes.register("sniper", {
} }
}) })
]]-- ]]--
ctf_classes.register("rocketeer", {
--[[ctf_classes.register("rocketeer", {
description = "Rocketeer", description = "Rocketeer",
pros = { "Can craft rockets" }, pros = { "Can craft rockets" },
cons = {}, cons = {},
color = "#fa0", color = "#fa0",
properties = { properties = {
allow_rockets = true,
initial_stuff = { initial_stuff = {
"shooter_rocket:rocket_gun_loaded", "shooter_rocket:rocket_gun_loaded",
"shooter_rocket:rocket 4", "shooter_rocket:rocket 4",
@ -167,6 +167,7 @@ ctf_classes.register("sniper", {
additional_item_blacklist = { additional_item_blacklist = {
"shooter_rocket:rocket_gun", "shooter_rocket:rocket_gun",
"shooter_rocket:rocket"
}, },
allowed_guns = { allowed_guns = {
@ -179,4 +180,4 @@ ctf_classes.register("sniper", {
"shooter_rocket:rocket" "shooter_rocket:rocket"
}, },
}, },
})]] })