Remove print

This commit is contained in:
Brandon Sturgeon 2018-07-30 21:27:57 -07:00 committed by GitHub
parent 5e3689795d
commit 83cd92ca63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -170,7 +170,7 @@ local function spawnProtectionWeaponChangeCheck( player, oldWeapon, newWeapon)
if weaponIsAllowed( newWeapon ) then return end
local lastSpawnTime = player:GetNWInt( "lastSpawnTime", CurTime() - spawnProtectionWeaponGracePeriod )
if lastSpawnTime >= CurTime() - spawnProtectionWeaponGracePeriod then player:ChatPrint("Ignoring no-weapon rule during spawn");return end
if lastSpawnTime >= CurTime() - spawnProtectionWeaponGracePeriod then return end
removeSpawnProtection( player )
setPlayerVisible( player )