8 lines
134 B
Lua
8 lines
134 B
Lua
|
hook.Add("InitPostEntityMap", "Adding", function()
|
||
|
|
||
|
|
||
|
for _, ent in pairs(ents.FindByClass("func_door")) do
|
||
|
ent:Remove()
|
||
|
end
|
||
|
end)
|