From 22ecbed1806e41aab5e957065de0a4c96085fb54 Mon Sep 17 00:00:00 2001 From: Shigbeard <4262327+Shigbeard@users.noreply.github.com> Date: Thu, 30 Mar 2023 23:46:17 +1100 Subject: [PATCH] fix - Renamed generic autorun filenames This should fix #77 Files in the lua/autorun namespace should not contain generic names They should be prefixed with a phrase unique to it's wider addon. --- lua/autorun/client/{autorun.lua => wuma_autorun.lua} | 4 ++-- lua/autorun/server/{autorun.lua => wuma_autorun.lua} | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) rename lua/autorun/client/{autorun.lua => wuma_autorun.lua} (96%) rename lua/autorun/server/{autorun.lua => wuma_autorun.lua} (93%) diff --git a/lua/autorun/client/autorun.lua b/lua/autorun/client/wuma_autorun.lua similarity index 96% rename from lua/autorun/client/autorun.lua rename to lua/autorun/client/wuma_autorun.lua index 7b74ee8..61e32a0 100644 --- a/lua/autorun/client/autorun.lua +++ b/lua/autorun/client/wuma_autorun.lua @@ -1,3 +1,3 @@ -WUMA = WUMA or {} - +WUMA = WUMA or {} + include("wuma/client/init.lua") \ No newline at end of file diff --git a/lua/autorun/server/autorun.lua b/lua/autorun/server/wuma_autorun.lua similarity index 93% rename from lua/autorun/server/autorun.lua rename to lua/autorun/server/wuma_autorun.lua index 4e2a31c..5aa6d21 100644 --- a/lua/autorun/server/autorun.lua +++ b/lua/autorun/server/wuma_autorun.lua @@ -1,3 +1,3 @@ -WUMA = WUMA or {} - -include("wuma/init.lua") +WUMA = WUMA or {} + +include("wuma/init.lua")