Created updater for Cauldron Particle config

This commit is contained in:
Sn0wStorm
2020-11-25 23:21:16 +01:00
parent 2af9a79dd7
commit aacbfa5f07
3 changed files with 113 additions and 3 deletions
+7 -1
View File
@@ -79,7 +79,7 @@ public class Tuple<A, B> {
}
Tuple<?, ?> tuple = (Tuple<?, ?>) object;
return tuple.a == a && tuple.b == b;
return tuple.a.equals(a) && tuple.b.equals(b);
}
@Override
@@ -87,4 +87,10 @@ public class Tuple<A, B> {
return a.hashCode() ^ b.hashCode();
}
@Override
public String toString() {
return "Tuple{" +
'{' + a + '}' +
'{' + b + "}}";
}
}