From 713a093c8d3c44fbe34dfcf1b03701e0b5737af3 Mon Sep 17 00:00:00 2001 From: Schmappie Eldress Date: Wed, 18 Aug 2021 18:14:02 -0500 Subject: [PATCH] Fix mod.conf and depends.txt warnings 2021-08-18 22:52:39: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (scaffold at [...]/clientmods/scaffold) 2021-08-18 22:52:39: WARNING[Main]: depends.txt is deprecated, please use mod.conf instead. (scaffold at [...]/clientmods/scaffold) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (kamikaze at [...]/clientmods/kamikaze) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (speedlimit at [...]/clientmods/speedlimit) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (quint at [...]/clientmods/quint) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (invrefill at [...]/clientmods/invrefill) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (haxnotify at [...]/clientmods/haxnotify) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (test at [...]/clientmods/test) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (optimize at [...]/clientmods/optimize) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (bookbot at [...]/clientmods/bookbot) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (dte at [...]/clientmods/dte) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (autoaim at [...]/clientmods/autoaim) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (peek at [...]/clientmods/peek) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (render at [...]/clientmods/dragonfire/render) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (combat at [...]/clientmods/dragonfire/combat) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (list at [...]/clientmods/dragonfire/list) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (muse at [...]/clientmods/muse) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (nlist at [...]/clientmods/nlist) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (automt at [...]/clientmods/automt) 2021-08-18 23:52:38: WARNING[Main]: Mods not having a mod.conf file with the name is deprecated. (waterbot at [...]/clientmods/waterbot) --- clientmods/autoaim/mod.conf | 3 +++ clientmods/automt/mod.conf | 3 +++ clientmods/bookbot/mod.conf | 3 +++ clientmods/dragonfire/combat/mod.conf | 3 +++ clientmods/dragonfire/list/mod.conf | 3 +++ clientmods/dragonfire/render/mod.conf | 3 +++ clientmods/dte/mod.conf | 3 +++ clientmods/haxnotify/mod.conf | 3 +++ clientmods/invrefill/mod.conf | 3 +++ clientmods/kamikaze/mod.conf | 3 +++ clientmods/muse/mod.conf | 3 +++ clientmods/nlist/mod.conf | 3 +++ clientmods/optimize/mod.conf | 3 +++ clientmods/peek/mod.conf | 3 +++ clientmods/quint/mod.conf | 3 +++ clientmods/scaffold/depends.txt | 2 -- clientmods/scaffold/mod.conf | 4 ++++ clientmods/speedlimit/mod.conf | 3 +++ clientmods/test/mod.conf | 3 +++ clientmods/waterbot/mod.conf | 3 +++ 20 files changed, 58 insertions(+), 2 deletions(-) create mode 100644 clientmods/autoaim/mod.conf create mode 100644 clientmods/automt/mod.conf create mode 100644 clientmods/bookbot/mod.conf create mode 100644 clientmods/dragonfire/combat/mod.conf create mode 100644 clientmods/dragonfire/list/mod.conf create mode 100644 clientmods/dragonfire/render/mod.conf create mode 100644 clientmods/dte/mod.conf create mode 100644 clientmods/haxnotify/mod.conf create mode 100644 clientmods/invrefill/mod.conf create mode 100644 clientmods/kamikaze/mod.conf create mode 100644 clientmods/muse/mod.conf create mode 100644 clientmods/nlist/mod.conf create mode 100644 clientmods/optimize/mod.conf create mode 100644 clientmods/peek/mod.conf create mode 100644 clientmods/quint/mod.conf delete mode 100644 clientmods/scaffold/depends.txt create mode 100644 clientmods/scaffold/mod.conf create mode 100644 clientmods/speedlimit/mod.conf create mode 100644 clientmods/test/mod.conf create mode 100644 clientmods/waterbot/mod.conf diff --git a/clientmods/autoaim/mod.conf b/clientmods/autoaim/mod.conf new file mode 100644 index 000000000..3f8ea3cc2 --- /dev/null +++ b/clientmods/autoaim/mod.conf @@ -0,0 +1,3 @@ +name = autoaim +author = cora +description = Automatically aim at nearby player diff --git a/clientmods/automt/mod.conf b/clientmods/automt/mod.conf new file mode 100644 index 000000000..ab6323da2 --- /dev/null +++ b/clientmods/automt/mod.conf @@ -0,0 +1,3 @@ +name = automt +author = cora +description = automt diff --git a/clientmods/bookbot/mod.conf b/clientmods/bookbot/mod.conf new file mode 100644 index 000000000..56fcf6faf --- /dev/null +++ b/clientmods/bookbot/mod.conf @@ -0,0 +1,3 @@ +name = bookbot +author = Emilia +description = Manage book writing and library diff --git a/clientmods/dragonfire/combat/mod.conf b/clientmods/dragonfire/combat/mod.conf new file mode 100644 index 000000000..2c81c7f9d --- /dev/null +++ b/clientmods/dragonfire/combat/mod.conf @@ -0,0 +1,3 @@ +name = combat +author = cora +description = killaura, forcefield, crystal_pvp, autototem diff --git a/clientmods/dragonfire/list/mod.conf b/clientmods/dragonfire/list/mod.conf new file mode 100644 index 000000000..bcebebf41 --- /dev/null +++ b/clientmods/dragonfire/list/mod.conf @@ -0,0 +1,3 @@ +name = list +author = cora +description = List manipulation diff --git a/clientmods/dragonfire/render/mod.conf b/clientmods/dragonfire/render/mod.conf new file mode 100644 index 000000000..87e576ffb --- /dev/null +++ b/clientmods/dragonfire/render/mod.conf @@ -0,0 +1,3 @@ +name = render +author = Fleckenstein +description = Unknown diff --git a/clientmods/dte/mod.conf b/clientmods/dte/mod.conf new file mode 100644 index 000000000..e030a1137 --- /dev/null +++ b/clientmods/dte/mod.conf @@ -0,0 +1,3 @@ +name = dte +author = Benjamin Fleming +description = Client Side Mod Designing & Testing Environment diff --git a/clientmods/haxnotify/mod.conf b/clientmods/haxnotify/mod.conf new file mode 100644 index 000000000..408022bd7 --- /dev/null +++ b/clientmods/haxnotify/mod.conf @@ -0,0 +1,3 @@ +name = haxnotify +author = cora +description = Tell server this is a hacked client diff --git a/clientmods/invrefill/mod.conf b/clientmods/invrefill/mod.conf new file mode 100644 index 000000000..6cf47fb85 --- /dev/null +++ b/clientmods/invrefill/mod.conf @@ -0,0 +1,3 @@ +name = invrefill +author = cora +description = Refill the inventory with a named shulker diff --git a/clientmods/kamikaze/mod.conf b/clientmods/kamikaze/mod.conf new file mode 100644 index 000000000..9a0087119 --- /dev/null +++ b/clientmods/kamikaze/mod.conf @@ -0,0 +1,3 @@ +name = kamikaze +author = cora +description = Remove bad stuff around spawn diff --git a/clientmods/muse/mod.conf b/clientmods/muse/mod.conf new file mode 100644 index 000000000..7560620cf --- /dev/null +++ b/clientmods/muse/mod.conf @@ -0,0 +1,3 @@ +name = muse +author = Emilia +description = Play note blocks diff --git a/clientmods/nlist/mod.conf b/clientmods/nlist/mod.conf new file mode 100644 index 000000000..a3d9e8c97 --- /dev/null +++ b/clientmods/nlist/mod.conf @@ -0,0 +1,3 @@ +name = nlist +author = cora +description = nlist diff --git a/clientmods/optimize/mod.conf b/clientmods/optimize/mod.conf new file mode 100644 index 000000000..0b4a3d589 --- /dev/null +++ b/clientmods/optimize/mod.conf @@ -0,0 +1,3 @@ +name = optimize +author = Emilia +description = Remove particles, droplets, burning effects diff --git a/clientmods/peek/mod.conf b/clientmods/peek/mod.conf new file mode 100644 index 000000000..c7a99702b --- /dev/null +++ b/clientmods/peek/mod.conf @@ -0,0 +1,3 @@ +name = peek +author = system32 +description = Peek inside a Mineclone Shulker box diff --git a/clientmods/quint/mod.conf b/clientmods/quint/mod.conf new file mode 100644 index 000000000..9a1130213 --- /dev/null +++ b/clientmods/quint/mod.conf @@ -0,0 +1,3 @@ +name = quint +author = Emilia +description = Queue interact diff --git a/clientmods/scaffold/depends.txt b/clientmods/scaffold/depends.txt deleted file mode 100644 index 3703ce6bf..000000000 --- a/clientmods/scaffold/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -nlist -turtle diff --git a/clientmods/scaffold/mod.conf b/clientmods/scaffold/mod.conf new file mode 100644 index 000000000..357896b21 --- /dev/null +++ b/clientmods/scaffold/mod.conf @@ -0,0 +1,4 @@ +name = scaffold +author = Emilia & cora +description = Various scaffold functions +depends = nlist, turtle diff --git a/clientmods/speedlimit/mod.conf b/clientmods/speedlimit/mod.conf new file mode 100644 index 000000000..3e9cf540a --- /dev/null +++ b/clientmods/speedlimit/mod.conf @@ -0,0 +1,3 @@ +name = speedlimit +author = cora +description = Override server movement speed limits diff --git a/clientmods/test/mod.conf b/clientmods/test/mod.conf new file mode 100644 index 000000000..affde5da1 --- /dev/null +++ b/clientmods/test/mod.conf @@ -0,0 +1,3 @@ +name = test +author = cora +description = Test diff --git a/clientmods/waterbot/mod.conf b/clientmods/waterbot/mod.conf new file mode 100644 index 000000000..f3c9e7751 --- /dev/null +++ b/clientmods/waterbot/mod.conf @@ -0,0 +1,3 @@ +name = waterbot +author = Emilia +description = Fill buckets in inventory with water