Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id "com.gradleup.shadow" version "9.4.1"
id "com.gradleup.shadow" version "9.4.2"
id "io.papermc.paperweight.userdev" version "${paperWeightUserDevVersion}"
id("xyz.jpenilla.run-paper") version "3.0.2" // Will use ${minecraftVersion} for the paper version
}
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
minecraftVersion = 26.1.2
minecraftVersion = 26.2
paperWeightUserDevVersion = 2.0.0-beta.21

# Plugins
Expand All @@ -17,7 +17,7 @@ ormVersion = 6.1
lombokVersion = 1.18.46

# Test Dependencies
slf4jVersion = 2.0.17
junitVersion = 6.0.3
slf4jVersion = 2.1.0-alpha1
junitVersion = 6.1
mockbukkitVersion = 4.113.1
h2DatabaseVersion = 2.4.240
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import java.nio.file.Path;

public class PackMetadataInjector implements DatapackInjector {
private static final double[] PACK_FORMAT = new double[] {101.1, 1};
private static final double[] PACK_FORMAT = new double[] {107.1, 1};

@Override
public void inject(File rootFile) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class ResourcePacksGenerator {

// https://minecraft.wiki/w/Pack_format
private static final String FORMAT_VERSION = "84";
private static final String FORMAT_VERSION = "88";

/**
* Generate the base structure of a resource pack in the plugin's data folder, with the given name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@
"state": {
"Name": "blue_ice"
}
},
"can_place_feature": {
"type": "minecraft:true"
},
"can_replace_with_air_or_fluid": {
"type": "minecraft:true"
},
"can_replace_with_barrier": {
"type": "minecraft:true"
}
}
}
6 changes: 3 additions & 3 deletions src/main/resources/datapacks/omc_dream/pack.mcmeta
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"pack": {
"description": "Le Pack de données des Rêves d'OpenMC",
"pack_format": 101,
"min_format": 101,
"max_format": 101
"pack_format": 107.1,
"min_format": 107.1,
"max_format": 107.1
}
}
Loading