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

Cleanup sources

This commit is contained in:
cyberpwn
2022-01-15 08:52:11 -05:00
parent ccd05c04a5
commit fd2e8cfa8a
3 changed files with 5 additions and 11 deletions

View File

@@ -445,15 +445,10 @@ public class B {
}
private static synchronized BlockData createBlockData(String s) {
try
{
try {
return Bukkit.createBlockData(s);
}
catch(IllegalArgumentException e)
{
if(s.contains("["))
{
} catch(IllegalArgumentException e) {
if(s.contains("[")) {
return createBlockData(s.split("\\Q[\\E")[0]);
}
}