mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
Merge branch '1.14'
This commit is contained in:
commit
d5cb1ab0df
3 changed files with 6 additions and 6 deletions
|
@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
|
||||||
apply plugin: 'eclipse'
|
apply plugin: 'eclipse'
|
||||||
apply plugin: 'maven-publish'
|
apply plugin: 'maven-publish'
|
||||||
|
|
||||||
version = '20.0'
|
version = '20.1'
|
||||||
group = 'de.ellpeck.naturesaura' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
group = 'de.ellpeck.naturesaura' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||||
archivesBaseName = 'NaturesAura'
|
archivesBaseName = 'NaturesAura'
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ minecraft {
|
||||||
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
||||||
|
|
||||||
// Recommended logging level for the console
|
// Recommended logging level for the console
|
||||||
property 'forge.logging.console.level', 'debug'
|
property 'forge.logging.console.level', 'info'
|
||||||
|
|
||||||
mods {
|
mods {
|
||||||
naturesaura {
|
naturesaura {
|
||||||
|
@ -46,7 +46,7 @@ minecraft {
|
||||||
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
||||||
|
|
||||||
// Recommended logging level for the console
|
// Recommended logging level for the console
|
||||||
property 'forge.logging.console.level', 'debug'
|
property 'forge.logging.console.level', 'info'
|
||||||
|
|
||||||
mods {
|
mods {
|
||||||
naturesaura {
|
naturesaura {
|
||||||
|
@ -62,7 +62,7 @@ minecraft {
|
||||||
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
||||||
|
|
||||||
// Recommended logging level for the console
|
// Recommended logging level for the console
|
||||||
property 'forge.logging.console.level', 'debug'
|
property 'forge.logging.console.level', 'info'
|
||||||
|
|
||||||
args '--mod', 'naturesaura', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/'), '--existing', file('src/generated/resources')
|
args '--mod', 'naturesaura', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/'), '--existing', file('src/generated/resources')
|
||||||
|
|
||||||
|
|
|
@ -123,7 +123,7 @@ public class BlockDimensionRail extends AbstractRailBlock implements IModItem, I
|
||||||
World overworld = server.getWorld(goalDimType);
|
World overworld = server.getWorld(goalDimType);
|
||||||
BlockPos spawn = overworld.getSpawnPoint();
|
BlockPos spawn = overworld.getSpawnPoint();
|
||||||
BlockPos ret = new BlockPos(spawn.getX(), 0, spawn.getZ());
|
BlockPos ret = new BlockPos(spawn.getX(), 0, spawn.getZ());
|
||||||
return ret.up(overworld.getHeight(Heightmap.Type.WORLD_SURFACE_WG, spawn.getX(), spawn.getZ()));
|
return ret.up(overworld.getHeight(Heightmap.Type.WORLD_SURFACE, spawn.getX(), spawn.getZ()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,7 +61,7 @@ public class BlockEndFlower extends BushBlock implements IModItem, ICustomBlockS
|
||||||
for (int i = 0; i < 6; i++) {
|
for (int i = 0; i < 6; i++) {
|
||||||
int x = dragon.world.rand.nextInt(256) - 128;
|
int x = dragon.world.rand.nextInt(256) - 128;
|
||||||
int z = dragon.world.rand.nextInt(256) - 128;
|
int z = dragon.world.rand.nextInt(256) - 128;
|
||||||
BlockPos pos = new BlockPos(x, dragon.world.getHeight(Heightmap.Type.WORLD_SURFACE_WG, x, z), z);
|
BlockPos pos = new BlockPos(x, dragon.world.getHeight(Heightmap.Type.WORLD_SURFACE, x, z), z);
|
||||||
if (!dragon.world.isBlockLoaded(pos))
|
if (!dragon.world.isBlockLoaded(pos))
|
||||||
continue;
|
continue;
|
||||||
if (dragon.world.getBlockState(pos.down()).getBlock() != Blocks.END_STONE)
|
if (dragon.world.getBlockState(pos.down()).getBlock() != Blocks.END_STONE)
|
||||||
|
|
Loading…
Reference in a new issue