From cf38d4ded1a00ff8baf3e7451351fb2940838b2f Mon Sep 17 00:00:00 2001 From: Jude Melton-Houghton Date: Sun, 3 Oct 2021 12:39:31 -0400 Subject: [PATCH] Use spaces around concatenation operators --- init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 99a1f64..9024d1b 100644 --- a/init.lua +++ b/init.lua @@ -19,12 +19,12 @@ local modpath = minetest.get_modpath(minetest.get_current_modname()) -dofile(modpath.."/api.lua") +dofile(modpath .. "/api.lua") if minetest.settings:get_bool("large_slugs_do_behavior", true) then - dofile(modpath.."/behavior.lua") + dofile(modpath .. "/behavior.lua") end -dofile(modpath.."/slugs.lua") +dofile(modpath .. "/slugs.lua") -dofile(modpath.."/mapgen.lua") +dofile(modpath .. "/mapgen.lua")