Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/entities/base_tanktracktool.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ DEFINE_BASECLASS( "base_anim" )
ENT.Type = "anim"
ENT.Spawnable = false
ENT.AdminOnly = true
ENT.Category = "tanktracktool"
ENT.Category = "Tank Track Tool"

local tanktracktool = tanktracktool

Expand Down
3 changes: 2 additions & 1 deletion lua/entities/sent_point_beam.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ DEFINE_BASECLASS( "base_tanktracktool" )
ENT.Type = "anim"
ENT.Spawnable = true
ENT.AdminOnly = false
ENT.Category = "tanktracktool"
ENT.Category = "Tank Track Tool"
ENT.PrintName = "Point Beam"

local tanktracktool = tanktracktool

Expand Down
3 changes: 2 additions & 1 deletion lua/entities/sent_suspension_shock.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ DEFINE_BASECLASS( "base_tanktracktool" )
ENT.Type = "anim"
ENT.Spawnable = true
ENT.AdminOnly = false
ENT.Category = "tanktracktool"
ENT.Category = "Tank Track Tool"
ENT.PrintName = "Suspension Shock"

local tanktracktool = tanktracktool

Expand Down
3 changes: 2 additions & 1 deletion lua/entities/sent_suspension_spring.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ DEFINE_BASECLASS( "base_tanktracktool" )
ENT.Type = "anim"
ENT.Spawnable = true
ENT.AdminOnly = false
ENT.Category = "tanktracktool"
ENT.Category = "Tank Track Tool"
ENT.PrintName = "Suspension Spring"

local tanktracktool = tanktracktool

Expand Down
3 changes: 2 additions & 1 deletion lua/entities/sent_tanktracks_auto/shared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ DEFINE_BASECLASS( "base_tanktracktool" )
ENT.Type = "anim"
ENT.Spawnable = true
ENT.AdminOnly = false
ENT.Category = "tanktracktool"
ENT.Category = "Tank Track Tool"
ENT.PrintName = "Tank Track Auto"

local netvar = tanktracktool.netvar.new()

Expand Down
3 changes: 2 additions & 1 deletion lua/entities/sent_tanktracks_legacy/shared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ DEFINE_BASECLASS( "base_tanktracktool" )
ENT.Type = "anim"
ENT.Spawnable = true
ENT.AdminOnly = false
ENT.Category = "tanktracktool"
ENT.Category = "Tank Track Tool"
ENT.PrintName = "Tank Track Legacy"

local tanktracktool = tanktracktool

Expand Down