From bc2e09fb4a3cef36da56a3f5cdd59f5b2127ebcc Mon Sep 17 00:00:00 2001 From: Matthew W Date: Wed, 13 Mar 2024 08:40:15 -0600 Subject: [PATCH] Autoformatter mistake --- .../data/computercraft/lua/rom/programs/fun/speaker.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/core/src/main/resources/data/computercraft/lua/rom/programs/fun/speaker.lua b/projects/core/src/main/resources/data/computercraft/lua/rom/programs/fun/speaker.lua index ec4f0657e..c85db1963 100644 --- a/projects/core/src/main/resources/data/computercraft/lua/rom/programs/fun/speaker.lua +++ b/projects/core/src/main/resources/data/computercraft/lua/rom/programs/fun/speaker.lua @@ -107,7 +107,7 @@ elseif cmd == "play" then handle.read(4) start = nil - -- Detect several other common audio files. + -- Detect several other common audio files. elseif start == "OggS" then return report_invalid_format("Ogg") elseif start == "fLaC" then return report_invalid_format("FLAC") elseif start:sub(1, 3) == "ID3" then return report_invalid_format("MP3")