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

Obfuscation fixes

This commit is contained in:
Daniel Mills
2020-08-30 16:09:22 -04:00
parent 9880248e49
commit 0b583bcf80
16 changed files with 14408 additions and 14054 deletions

View File

@@ -179,7 +179,17 @@ public class IrisBiome extends IrisRegistrant implements IRare
return null;
}
return Color.getColor(getDebugColor().substring(1));
try
{
return Color.decode(getDebugColor());
}
catch(Throwable e)
{
}
return null;
});
}