1

Unseen Error? Inaccessible class?

T3rr11 1/25/14 10:02 pm
259
1/25/2014 10:26 pm
Just did a new layout for my mod... like this:



and now i'm getting 50 of these errors saying:

blockID in Block is defined in an inaccessible class or interface?

Could someone please help me?
Posted by
T3rr11
Level 34 : Artisan Modder
14

  Have something to say?

JoinSign in

2

T3rr11
01/25/2014 10:26 pm
Level 34 : Artisan Modder
If its in the file folder the package says:

package net.minecraft.src.armor;
package net.minecraft.src.biome;
package net.minecraft.src.block;
package net.minecraft.src.dimension;
package net.minecraft.src.entity;
package net.minecraft.src.extentions;
package net.minecraft.src.item;
package net.minecraft.src.magic;
package net.minecraft.src.tab;

and imports

import net.minecraft.src.armor.*;
import net.minecraft.src.biome.*;
import net.minecraft.src.block.*;
import net.minecraft.src.dimension.*;
import net.minecraft.src.entity.*;
import net.minecraft.src.extentions.*;
import net.minecraft.src.item.*;
import net.minecraft.src.magic.*;
import net.minecraft.src.tab.*;
1
MrComputerGhost
01/25/2014 10:23 pm
Level 47 : Master Modder
You have to change the package declarations and the imports to match the layout. Otherwise, there is no class for it to import.
1

Welcome