Archived
0

Fixed Normal Chat

This commit is contained in:
minenash
2018-01-16 17:58:35 -05:00
parent bef6fa9308
commit 7064f8d3f4
2 changed files with 16 additions and 7 deletions

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, module, key);
Object o = getData_(id, "Ignore", key);
return o == null ? fallback : o;
}