Skip to content

Commit

Permalink
Fix 64-bit check
Browse files Browse the repository at this point in the history
  • Loading branch information
DrVrej committed Jan 29, 2023
1 parent 18bf97d commit 470fed9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/autorun/vj_base_autorun.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ end)
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
------ Outdated GMod Version Check ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
if SERVER && !isfunction(FindMetaTable("NPC").SetSurroundingBoundsType) then
if SERVER && !isfunction(FindMetaTable("Entity").SetSurroundingBoundsType) then
timer.Simple(1, function()
if !VJBASE_ERROR_GAME_OUTDATED then
VJBASE_ERROR_GAME_OUTDATED = true
Expand Down

0 comments on commit 470fed9

Please sign in to comment.