├── LICENSE ├── README.adoc └── data ├── load ├── functions │ └── _private │ │ └── init.mcfunction └── tags │ └── functions │ ├── _private │ ├── init.json │ └── load.json │ ├── load.json │ ├── post_load.json │ └── pre_load.json └── minecraft └── tags └── functions └── load.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanternMC/load/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanternMC/load/HEAD/README.adoc -------------------------------------------------------------------------------- /data/load/functions/_private/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanternMC/load/HEAD/data/load/functions/_private/init.mcfunction -------------------------------------------------------------------------------- /data/load/tags/functions/_private/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanternMC/load/HEAD/data/load/tags/functions/_private/init.json -------------------------------------------------------------------------------- /data/load/tags/functions/_private/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanternMC/load/HEAD/data/load/tags/functions/_private/load.json -------------------------------------------------------------------------------- /data/load/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/load/tags/functions/post_load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/load/tags/functions/pre_load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanternMC/load/HEAD/data/minecraft/tags/functions/load.json --------------------------------------------------------------------------------