TARDIS addon integration #514
-
I am wondering about whether I may integrate TARDIS-Dynmap and TARDISChunkGenerator into the base plugin. The first is very simple, and the second is necessary for the base plugin to function. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
If you're dependant on them you can put it in your plugin.yml, not sure why you would need to just copy the code since they are plugins. |
Beta Was this translation helpful? Give feedback.
-
Not possible I believe. |
Beta Was this translation helpful? Give feedback.
Not possible I believe.
You need to consider load order and dependencies.
TARDISChunkGenerator is a world generator so has
load: STARTUP
in plugin.yml so loads before any worlds are loaded.Dynmap-TARDIS has
load: POSTWORLD
in plugin.yml, and also a dependency on both the Dynmap plugin itself and the TARDIS plugin so needs to load after both plugins, and after worlds have loaded.