1
[1.6.4] ModLoader Decompile Error
When I decompile ModLoader with MCP, it gives me errors on the following 3 lines:
Anyone know how to fix this?
Click to reveal
localizedStrings.put(s1, obj);tradeItems.put(Integer.valueOf(profession), list);keyList.put(basemod, obj);Anyone know how to fix this?
4
Go to your src folder.
In modloader.java change each line to the following:
localizedStrings.put(s1, (Map)obj);
tradeItems.put(Integer.valueOf(profession), (List)list);
keyList.put(basemod, (Map)obj);
In modloader.java change each line to the following:
localizedStrings.put(s1, (Map)obj);
tradeItems.put(Integer.valueOf(profession), (List)list);
keyList.put(basemod, (Map)obj);
How did you get ML working in 1.6.4?
The method put(String, Map<String,String>) in the type Map<String,Map<String,Map<String,String>Similar Errors on all 3. ^
It would help if you posted the errors
How did you get it to work on 1.6.4 though?
How did you get it to work on 1.6.4 though?
