mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-09-21 06:13:13 -04:00
Fixed object initialisation error
This commit is contained in:
@@ -76,7 +76,7 @@ public class SWGMultiMap<K, V> implements Multimap<K, V>, Serializable {
|
||||
for (Object item : map.values()) {
|
||||
try {
|
||||
if (item instanceof IDelta) {
|
||||
item.getClass().getMethod("init", new Class[] {}).invoke(item, new Object[] { });
|
||||
item.getClass().getMethod("init", new Class[] { SWGObject.class }).invoke(item, new Object[] { object });
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
|
||||
Reference in New Issue
Block a user