1
0
mirror of https://github.com/IkarusHD/ICF-3.git synced 2025-03-04 03:03:12 -05:00

Fix baseplate conversion failing solidity checks

This commit is contained in:
thecraftianman 2025-01-05 17:07:06 -05:00
parent 5d8e1ebaae
commit 18ff75eb59

View File

@ -351,7 +351,8 @@ do -- ASSUMING DIRECT CONTROL
end
function ENT:SetNotSolid(...)
if self.IsACFEntity then ACF.CheckLegal(self) end
-- NOTE: Slight delay added to this check in order to account for baseplate conversion otherwise failing
if self.IsACFEntity and ACF.LegalChecks then timer.Simple(0, function() ACF.CheckLegal(self) end) end
SetNotSolid(self, ...)
end