Compare commits

...

12 Commits

Author SHA1 Message Date
Sofiane H. Djerbi
0383ff6961 Release on push 2023-02-26 23:22:35 +01:00
Sofiane H. Djerbi
8e1bfd6c3c Merge pull request #16 from KaiijuMC/update-upstream
Update Upstream (Purpur)
2023-02-26 23:21:40 +01:00
kugge
1638fe6b97 Update Upstream (Purpur) 2023-02-26 15:17:34 +00:00
Sofiane H. Djerbi
d5699419e4 Merge pull request #14 from KaiijuMC/update-upstream
Update Upstream (Purpur)
2023-02-25 01:17:25 +01:00
kugge
d57758c9f8 Update Upstream (Purpur) 2023-02-23 15:13:37 +00:00
Sofiane H. Djerbi
63d893a0e4 Merge pull request #12 from KaiijuMC/update-upstream
Update Upstream (Purpur)
2023-02-22 23:15:01 +01:00
kugge
08892016f5 Update Upstream (Purpur) 2023-02-22 15:14:39 +00:00
Sofiane H. Djerbi
4caf0ff2bd Update README.md 2023-02-21 23:47:54 +01:00
Sofiane H. Djerbi
d4ca1a3765 Merge pull request #10 from KaiijuMC/update-upstream
Update Upstream (Purpur)
2023-02-21 23:37:10 +01:00
kugge
842d7fa834 Update Upstream (Purpur) 2023-02-21 15:13:38 +00:00
Sofiane H. Djerbi
ecad700a9e Merge pull request #9 from KaiijuMC/update-upstream
Update Upstream (Purpur)
2023-02-20 16:40:44 +01:00
kugge
1190cfc22a Update Upstream (Purpur) 2023-02-20 15:13:51 +00:00
4 changed files with 12 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
name: Release Jars
on: workflow_dispatch
on: [push, workflow_dispatch]
env:
version: '1.19.3'
branch: ver/1.19.3

View File

@@ -17,6 +17,11 @@
- **Xymb Linear Format**: Saves about 50% of disk space in OW and Nether and 95% in The End.
- **Lobotomize**: Lobotomize mobs and villagers without breaking vanilla mechanics.
### Roadmap
- **Lithium**: Full implementation of Lithium.
- **C2ME**: Full implementation of C2ME.
- **VMP**: Full implementation of VMP.
## Building
In order to distribute and use this server software, you need a paperclip file:

View File

@@ -2,7 +2,7 @@ group = dev.kaiijumc.kaiiju
version = 1.19.3-R0.1-SNAPSHOT
mcVersion = 1.19.3
purpurRef = 41593baf70c5402c2ad39e867b0f89561af95c30
purpurRef = 387a581a42551fe9bcdcb583a897a7341bc2dceb
org.gradle.caching=true
org.gradle.parallel=true

View File

@@ -453,10 +453,10 @@ index a9289072b048095330ea32d7c965e8dda61a36fc..bffd82b3d89e12f2c3d6a7e89f5a8ecd
this.generator = gen;
this.world = new CraftWorld((ServerLevel) this, gen, biomeProvider, env);
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
index 1b65a38fd65f420f79bbd4c2f6c53e3d9b2d8f81..12e4fb8d9e085991c54a78849e8492e47ba194ed 100644
index 2132954c6e8a32b33bb6b19344db047c32f109cc..fb690144143e6f23ca4064d84e6e0bbad059ceb5 100644
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
@@ -1033,6 +1033,7 @@ public final class CraftServer implements Server {
@@ -977,6 +977,7 @@ public final class CraftServer implements Server {
org.spigotmc.SpigotConfig.init((File) console.options.valueOf("spigot-settings")); // Spigot
this.console.paperConfigurations.reloadConfigs(this.console);
org.purpurmc.purpur.PurpurConfig.init((File) console.options.valueOf("purpur-settings")); // Purpur
@@ -464,7 +464,7 @@ index 1b65a38fd65f420f79bbd4c2f6c53e3d9b2d8f81..12e4fb8d9e085991c54a78849e8492e4
for (ServerLevel world : this.console.getAllLevels()) {
// world.serverLevelData.setDifficulty(config.difficulty); // Paper - per level difficulty
world.setSpawnSettings(world.serverLevelData.getDifficulty() != Difficulty.PEACEFUL && config.spawnMonsters, config.spawnAnimals); // Paper - per level difficulty (from MinecraftServer#setDifficulty(ServerLevel, Difficulty, boolean))
@@ -1049,6 +1050,7 @@ public final class CraftServer implements Server {
@@ -993,6 +994,7 @@ public final class CraftServer implements Server {
}
world.spigotConfig.init(); // Spigot
world.purpurConfig.init(); // Purpur
@@ -472,7 +472,7 @@ index 1b65a38fd65f420f79bbd4c2f6c53e3d9b2d8f81..12e4fb8d9e085991c54a78849e8492e4
}
Plugin[] pluginClone = pluginManager.getPlugins().clone(); // Paper
@@ -1065,6 +1067,7 @@ public final class CraftServer implements Server {
@@ -1009,6 +1011,7 @@ public final class CraftServer implements Server {
org.spigotmc.SpigotConfig.registerCommands(); // Spigot
io.papermc.paper.command.PaperCommands.registerCommands(this.console); // Paper
org.purpurmc.purpur.PurpurConfig.registerCommands(); // Purpur
@@ -480,7 +480,7 @@ index 1b65a38fd65f420f79bbd4c2f6c53e3d9b2d8f81..12e4fb8d9e085991c54a78849e8492e4
this.overrideAllCommandBlockCommands = this.commandsConfiguration.getStringList("command-block-overrides").contains("*");
this.ignoreVanillaPermissions = this.commandsConfiguration.getBoolean("ignore-vanilla-permissions");
@@ -2886,6 +2889,13 @@ public final class CraftServer implements Server {
@@ -2831,6 +2834,13 @@ public final class CraftServer implements Server {
}
// Purpur end