mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-17 13:13:12 +01:00
10 lines
181 B
Java
10 lines
181 B
Java
package ellpeck.actuallyadditions.tile;
|
|
|
|
public class TileEntityPhantomBooster extends TileEntityBase{
|
|
|
|
@Override
|
|
public boolean canUpdate(){
|
|
return false;
|
|
}
|
|
|
|
}
|