mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 20:59:09 +01:00
10 lines
182 B
Java
10 lines
182 B
Java
|
package de.ellpeck.naturesaura.blocks.tiles;
|
||
|
|
||
|
public class TileEntitySpawnLamp extends TileEntityImpl {
|
||
|
|
||
|
public int getRadius() {
|
||
|
return this.redstonePower * 3;
|
||
|
}
|
||
|
|
||
|
}
|