fix type for FFoKC
This commit is contained in:
parent
73f9c64256
commit
33537a1772
1 changed files with 2 additions and 2 deletions
|
@ -1458,9 +1458,9 @@ public class Mekanism
|
|||
{
|
||||
if(event.getChunk() != null && !event.world.isRemote)
|
||||
{
|
||||
Map copy = (Map)((HashMap)event.getChunk().chunkTileEntityMap).clone();
|
||||
//Map copy = (Map)((HashMap)event.getChunk().chunkTileEntityMap).clone();
|
||||
|
||||
for(Iterator iter = copy.values().iterator(); iter.hasNext();)
|
||||
for(Iterator iter = /*copy*/event.getChunk().chunkTileEntityMap.values().iterator(); iter.hasNext();)
|
||||
{
|
||||
Object obj = iter.next();
|
||||
|
||||
|
|
Loading…
Reference in a new issue