From f63f85921fb7ef27175df7bfe2f3c3d93475493b Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Sun, 19 May 2024 08:38:41 +0100 Subject: [PATCH] Fix missing quotes in the settings example --- .../main/resources/data/computercraft/lua/rom/apis/settings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/core/src/main/resources/data/computercraft/lua/rom/apis/settings.lua b/projects/core/src/main/resources/data/computercraft/lua/rom/apis/settings.lua index 0d6ead5a2..6f1d1a3ab 100644 --- a/projects/core/src/main/resources/data/computercraft/lua/rom/apis/settings.lua +++ b/projects/core/src/main/resources/data/computercraft/lua/rom/apis/settings.lua @@ -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