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

Carving Biomes

This commit is contained in:
Daniel Mills
2020-09-12 00:17:12 -04:00
parent 30e1d9552c
commit 9272765f3c
8 changed files with 153 additions and 50 deletions

View File

@@ -100,6 +100,11 @@ public class ResourceLoader<T extends IrisRegistrant>
public T load(String name)
{
if(name.trim().isEmpty())
{
return null;
}
String key = name + "-" + cname;
if(loadCache.containsKey(key))