-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,7 +95,9 @@ end | |
function ENT:Think() | ||
local index = self:GetInternalIndex() | ||
|
||
gm_voxelate.module.voxUpdate(index,CLIENT and 100 or 25,self) | ||
-- 100 updates per frame is -SERIOUSLY- excessive | ||
-- the entire point of queueing updates is so we dont lag balls | ||
gm_voxelate.module.voxUpdate(index,20,self) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
MDFL64
Author
Member
|
||
|
||
if CLIENT then | ||
if not self.correct_maxs then | ||
|
Only bumped it to a hundred clientside since the client just has to update its own loaded chunks, and doesn't have to bother with the entire world: also I didn't experience that much lag with 100/tick
How about a compromise of 35 updates clientside?