From 49b5e7cd8f675a7c772881f0872c48c4d780129b Mon Sep 17 00:00:00 2001 From: Clint <112812765+ClintUNI@users.noreply.github.com> Date: Wed, 10 Jan 2024 06:16:08 +0100 Subject: [PATCH] Add .lua extension to Assert file This fixed the runtime error because Index requires this file, but it had no extension and thus wasn't converted by Rojo. --- src/Index/Util/{Assert => Assert.lua} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/Index/Util/{Assert => Assert.lua} (96%) diff --git a/src/Index/Util/Assert b/src/Index/Util/Assert.lua similarity index 96% rename from src/Index/Util/Assert rename to src/Index/Util/Assert.lua index c0932f3..8ddcae5 100644 --- a/src/Index/Util/Assert +++ b/src/Index/Util/Assert.lua @@ -1,4 +1,4 @@ --!strict return function(condition: (any), errorMessage: string?): () if not (condition) then error(errorMessage, 2) end -end \ No newline at end of file +end