1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-01-09 08:50:29 +00:00

Fix missing quotes in the settings example

This commit is contained in:
Jonathan Coates 2024-05-19 08:38:41 +01:00
parent c7e49d1929
commit f63f85921f
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06

View File

@ -19,7 +19,7 @@ When a computer starts, it reads the current value of settings from the
settings.define("my.setting", {
description = "An example setting",
default = 123,
type = number,
type = "number",
})
print("my.setting = " .. settings.get("my.setting")) -- 123