EcoPlugin#afterLoad now runs 2 ticks after, with a preliminary reload 1 tick after startup to fix load order bugs

This commit is contained in:
Auxilor
2023-05-13 17:43:31 +01:00
parent 3fe1c2c69f
commit 4aed33751d
6 changed files with 48 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
package com.willfp.eco.internal.logging
import java.util.logging.LogRecord
import java.util.logging.Logger
object NOOPLogger : Logger("eco_noop", null as String?) {
override fun log(record: LogRecord?) {
return
}
}