Blockland Forums > Modification Help
Max Draw Distance Function.
Lugnut:
--- Quote from: Wordy on February 26, 2012, 02:55:01 PM ---Alright. Also, if I said I wanted to add 50 onto the current distance max, and limit it to 1000. how would that work?
--- End quote ---
It's lock is hardcoded into blockland at 1000.
Try this:
$pref::visibleDistanceMax = $pref::visibleDistanceMax + 50;
or
$pref::visibleDistanceMax += 50;
Wordy:
Thank you Lugnut.