Archived
0

Fixed accidental push of DataManager

This commit is contained in:
Minenash
2018-01-16 18:08:02 -05:00
committed by GitHub
parent 7064f8d3f4
commit a3a97184f8

View File

@@ -172,7 +172,7 @@ public final class DataManager implements CoreModule, Listener
protected Object getOrDefault_(String id, String module, String key, Object fallback)
{
Object o = getData_(id, "Ignore", key);
Object o = getData_(id, module, key);
return o == null ? fallback : o;
}