9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-29 12:09:07 +00:00

MCA Data Pack Support for custom biomes

This commit is contained in:
Daniel Mills
2021-07-14 15:23:04 -04:00
parent 2433e31db0
commit dbdf8a97ae
6 changed files with 77 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
package com.volmit.iris.nms;
@FunctionalInterface
public interface BiomeBaseInjector {
default void setBiome(int x, int z, Object biomeBase)
{
setBiome(x, 0, z, biomeBase);
}
void setBiome(int x, int y, int z, Object biomeBase);
}