Using correct ModID
This commit is contained in:
parent
09395921ce
commit
25bcbd6369
1 changed files with 3 additions and 2 deletions
|
@ -33,8 +33,9 @@ public abstract class Config {
|
|||
|
||||
if (autoSync) {
|
||||
final String uid = "CONFIG_" + modID + "_" + group;
|
||||
DataExchangeAPI.addAutoSyncFile(BCLib.MOD_ID, uid, keeper.getConfigFile());
|
||||
autoSyncConfigs.put(new DataExchange.AutoSyncID(modID, uid), this);
|
||||
final DataExchange.AutoSyncID aid = new DataExchange.AutoSyncID(BCLib.MOD_ID, uid);
|
||||
DataExchangeAPI.addAutoSyncFile(aid.modID, aid.uniqueID, keeper.getConfigFile());
|
||||
autoSyncConfigs.put(aid, this);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue