From c900b99f86ac8256ef85edc557625548b22649d7 Mon Sep 17 00:00:00 2001 From: Taso Date: Tue, 27 Jul 2021 11:09:41 -0400 Subject: [PATCH] chore(lua54): utilize Lua version 5.4 runtime This version includes improved changes to GC, better pseudo-randomness with `math.random()` (no longer requiring a seed to display even an ounce of randomness), and `const` keyword for all the immutable fellas out there. --- fxmanifest.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fxmanifest.lua b/fxmanifest.lua index 94ddc4a..604f7ff 100644 --- a/fxmanifest.lua +++ b/fxmanifest.lua @@ -32,6 +32,8 @@ ui_page { 'html/ui.html' } +lua54 'yes' + files { 'html/ui.html', 'html/css/main.css', @@ -42,4 +44,4 @@ dependencies { 'progressbar', 'connectqueue', 'ghmattimysql' -} \ No newline at end of file +}