Skip to content

Commit

Permalink
One more try
Browse files Browse the repository at this point in the history
  • Loading branch information
thecraftianman committed Sep 6, 2024
1 parent 896adc2 commit 0520dad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lua/tests/acf/core/validation_sv/acf_activate.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@ return {
groupName = "ACF.Activate",

beforeEach = function( State )
local PhysObj = { IsValid = function() return true end }
local PhysObj = {
IsValid = function() return true end,
GetSurfaceArea = function() return 1 end,
}

State.Ent = {
ACF = {},
GetPhysicsObject = function() return PhysObj end,
GetTable = function() return State end,
GetTable = function() return State.Ent end,
}
end,

Expand Down

0 comments on commit 0520dad

Please sign in to comment.