diff options
Diffstat (limited to 'client/global.gd')
-rw-r--r-- | client/global.gd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/global.gd b/client/global.gd index da1d8515..427809be 100644 --- a/client/global.gd +++ b/client/global.gd @@ -52,9 +52,9 @@ var default_settings := { "graphics_preset": { "type": "dropdown_preset", "options": [tr("Low"), tr("Medium"), tr("High"), tr("Ultra")], - "value":1, + "value": 1, "description": tr("Graphics preset"), - "apply": GRAPHICS_PRESETS + "apply": "GRAPHICS_PRESETS" }, "voxel_gi": { "type": "toggle", @@ -98,7 +98,7 @@ const GRAPHICS_PRESETS = [ { "voxel_gi": true, "sdfgi": false, - "grass_amount": 24 + "grass_amount": 16 } ] |