Skip to content

Commit

Permalink
Fix Whitespace and Typo Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
LengthenedGradient committed Feb 20, 2024
1 parent dd07b0d commit 4658c50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/acf/damage/explosion_sv.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function Damage.isValidTarget(Entity)
local Type = ACF.Check(Entity)

if not Type then return false end
if GlobalFilter[Entity:GetClass()] then print(Entity) return false end
if GlobalFilter[Entity:GetClass()] then return false end
if Entity.Exploding then return false end
if Type ~= "Squishy" then return true end

Expand Down
2 changes: 1 addition & 1 deletion lua/acf/menu/data_callbacks.lua
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ local Settings = {

ACF.AllowProcArmor = Bool
GlobalFilter["acf_armor"] = not Bool

if CLIENT and not IsValid(Player) then return end

Message("Info", "Procedural armor has been " .. (Bool and "enabled." or "disabled."))
Expand Down

0 comments on commit 4658c50

Please sign in to comment.