From 262dd3e2a19f3adabc71ce8e4430a21266b82d80 Mon Sep 17 00:00:00 2001 From: N Date: Tue, 24 Mar 2026 20:07:48 -0300 Subject: [PATCH 1/2] `box_starts` and `box_ends` --- Localization.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Localization.md b/Localization.md index 750518a..8650f2b 100644 --- a/Localization.md +++ b/Localization.md @@ -234,6 +234,8 @@ SMODS.Consumable { background_colour = G.C.BLACK, -- Change the default background colour main_start = nil, -- Table of UIElements inserted before the main description (-> "Building a UI") main_end = nil, -- Table of UIElements inserted after the main description + box_starts = {}, -- List of tables of UIElements inserted before the multibox description at each index + box_ends = {}, -- List of tables of UIElements inserted after the main description at each index } end, } From 3c0d263d7e7354573f7e17fda0d1782d952aa5d7 Mon Sep 17 00:00:00 2001 From: N Date: Tue, 24 Mar 2026 20:11:29 -0300 Subject: [PATCH 2/2] better wording and fix typo --- Localization.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localization.md b/Localization.md index 8650f2b..bab14ff 100644 --- a/Localization.md +++ b/Localization.md @@ -234,8 +234,8 @@ SMODS.Consumable { background_colour = G.C.BLACK, -- Change the default background colour main_start = nil, -- Table of UIElements inserted before the main description (-> "Building a UI") main_end = nil, -- Table of UIElements inserted after the main description - box_starts = {}, -- List of tables of UIElements inserted before the multibox description at each index - box_ends = {}, -- List of tables of UIElements inserted after the main description at each index + box_starts = {}, -- List of tables of UIElements inserted before a multibox description at each index + box_ends = {}, -- List of tables of UIElements inserted after a multibox description at each index } end, }