Fix players after the first not attackable

This commit is contained in:
Simon Brodtmann 2025-03-14 18:46:05 +01:00
parent 34d3b4a1a5
commit 86f8c55506
2 changed files with 5 additions and 4 deletions

View file

@ -0,0 +1,5 @@
for _, player in pairs(game.players) do
if player.character then
player.character.destructible = true
end
end