自定义季节提供
package net.momirealms.customcrops.api.example;
import net.momirealms.customcrops.api.core.world.Season;
import net.momirealms.customcrops.api.integration.SeasonProvider;
import org.bukkit.World;
import org.jetbrains.annotations.NotNull;
public class MySeasonProvider implements SeasonProvider {
@Override
public @NotNull Season getSeason(@NotNull World world) {
return ...;
}
@Override
public String identifier() {
return "MySeasonPlugin";
}
}