Add initial set of 1.16.1 block definitions (about 1/3 of them)

This commit is contained in:
Mike Primm 2020-06-26 01:13:09 -05:00
parent a3ff80189e
commit 50de75edef
4 changed files with 156 additions and 2 deletions

View file

@ -247,4 +247,14 @@ public class BukkitVersionHelperSpigot116 extends BukkitVersionHelperGeneric {
Log.severe("getStateStringByCombinedId not implemented");
return null;
}
@Override
/** Get ID string from biomebase */
public String getBiomeBaseIDString(Object bb) {
String s = ((BiomeBase)bb).n();
if (s != null) {
String[] ss = s.split("\\.");
return ss[ss.length-1];
}
return null;
}
}