Update sv_player.lua

This commit is contained in:
[TW]Rain_Bob 2023-11-12 11:03:15 +08:00 committed by GitHub
parent ae2c125d0b
commit e8dc2301de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -180,6 +180,9 @@ function GM:PlayerShouldTaunt( ply, actid )
end
function GM:CanPlayerSuicide(ply)
if self:GetGameState() >= 2 then
ply:ChatPrint("You cannot kill bind in fight state")
end
ply:Kill()
return false --????
end