removed spawn chunk radius game rule, updated dependencies, and cleaned up project files
This commit is contained in:
2
.idea/modules.xml
generated
2
.idea/modules.xml
generated
@@ -4,8 +4,6 @@
|
|||||||
<modules>
|
<modules>
|
||||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules/PixelBlocks.main.iml" filepath="$PROJECT_DIR$/.idea/modules/PixelBlocks.main.iml" />
|
<module fileurl="file://$PROJECT_DIR$/.idea/modules/PixelBlocks.main.iml" filepath="$PROJECT_DIR$/.idea/modules/PixelBlocks.main.iml" />
|
||||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules/eu.mhsl.minecraft.PixelBlocks.main.iml" filepath="$PROJECT_DIR$/.idea/modules/eu.mhsl.minecraft.PixelBlocks.main.iml" />
|
<module fileurl="file://$PROJECT_DIR$/.idea/modules/eu.mhsl.minecraft.PixelBlocks.main.iml" filepath="$PROJECT_DIR$/.idea/modules/eu.mhsl.minecraft.PixelBlocks.main.iml" />
|
||||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules/minecraft.PixelBlocks.main.iml" filepath="$PROJECT_DIR$/.idea/modules/minecraft.PixelBlocks.main.iml" />
|
|
||||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules/projects.PixelBlocks.main.iml" filepath="$PROJECT_DIR$/.idea/modules/projects.PixelBlocks.main.iml" />
|
|
||||||
</modules>
|
</modules>
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
14
.idea/modules/elias.projects.PixelBlocks.main.iml
generated
Normal file
14
.idea/modules/elias.projects.PixelBlocks.main.iml
generated
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module version="4">
|
||||||
|
<component name="FacetManager">
|
||||||
|
<facet type="minecraft" name="Minecraft">
|
||||||
|
<configuration>
|
||||||
|
<autoDetectTypes>
|
||||||
|
<platformType>PAPER</platformType>
|
||||||
|
<platformType>ADVENTURE</platformType>
|
||||||
|
</autoDetectTypes>
|
||||||
|
<projectReimportVersion>1</projectReimportVersion>
|
||||||
|
</configuration>
|
||||||
|
</facet>
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
2
.idea/vcs.xml
generated
2
.idea/vcs.xml
generated
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="VcsDirectoryMappings">
|
<component name="VcsDirectoryMappings">
|
||||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
<mapping directory="" vcs="Git" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
@@ -22,7 +22,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly "io.papermc.paper:paper-api:1.21.7-R0.1-SNAPSHOT"
|
compileOnly "io.papermc.paper:paper-api:1.21.10-R0.1-SNAPSHOT"
|
||||||
implementation "co.aikar:taskchain-bukkit:3.7.2"
|
implementation "co.aikar:taskchain-bukkit:3.7.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -140,7 +140,6 @@ public class PixelBlockWorld {
|
|||||||
|
|
||||||
World world = Bukkit.createWorld(worldCreator);
|
World world = Bukkit.createWorld(worldCreator);
|
||||||
Objects.requireNonNull(world);
|
Objects.requireNonNull(world);
|
||||||
world.setGameRule(GameRule.SPAWN_CHUNK_RADIUS, 0);
|
|
||||||
|
|
||||||
world.setGameRule(GameRule.RANDOM_TICK_SPEED, 0);
|
world.setGameRule(GameRule.RANDOM_TICK_SPEED, 0);
|
||||||
world.setGameRule(GameRule.DO_FIRE_TICK, false);
|
world.setGameRule(GameRule.DO_FIRE_TICK, false);
|
||||||
|
|||||||
Reference in New Issue
Block a user