|
@@ -94,6 +94,30 @@ Now you're ready to use the generator and you should now be able proceeding the
|
|
|
|
|
|
Typing the command `/oregen order` will bring up the default editing GUI, but in ordering mode. Ordering mode means that the clicked generator will moved by one position to the right, simply swapping two generators. In this way, you can reorder your generators. Typing `/oregen edit` again will exit the ordering mode.
|
|
|
|
|
|
+### Default config.yml
|
|
|
+
|
|
|
+```yml
|
|
|
+# Here you can define worlds where the generator should not work
|
|
|
+disabled-worlds:
|
|
|
+- "world_nether"
|
|
|
+
|
|
|
+# AFK mode: Players who stay more than 20 minutes afk would get the defined afk generator
|
|
|
+# remove the '#' to enable this feature.
|
|
|
+#afk-generator-name: afk
|
|
|
+#afk-after-x-seconds: 1200
|
|
|
+
|
|
|
+# command for players that shows the current generator on an island (permission: advancedoregen.showgenerator)
|
|
|
+show-generator-command: generator
|
|
|
+
|
|
|
+# water <-> lava fix
|
|
|
+# the water-lava-fix avoid generating ores when water is poured on lava directly and vice-versa
|
|
|
+# set it to false for using custom ore gen's generator behavior
|
|
|
+water-lava-fix: true
|
|
|
+
|
|
|
+# fence generator, allows you to generate cobblestone by placing a fence block instead of lava.
|
|
|
+fence-generator-enabled: false
|
|
|
+```
|
|
|
+
|
|
|
# Misc
|
|
|
|
|
|
### AFK feature
|