Skip to content

Commit 2acb749

Browse files
committed
rolled back worldedit to v7.2.6
bad mojang upgrades libs in 1.18 snapshot which also affects worldedit binary compatibility
1 parent 942726f commit 2acb749

2 files changed

Lines changed: 3 additions & 7 deletions

File tree

build.gradle

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,6 @@ def projectMod = project(':' + settings.modname) {
127127
all {
128128
resolutionStrategy {
129129
// force world edit to use the same lib as minecraft 1.13.2
130-
force 'com.google.code.findbugs:jsr305:3.0.1'
131-
force 'com.google.code.gson:gson:2.8.0'
132-
force 'com.google.guava:guava:21.0'
133-
force 'it.unimi.dsi:fastutil:8.2.1'
134130
force 'org.apache.logging.log4j:log4j-api:2.8.1'
135131
force 'org.apache.logging.log4j:log4j-core:2.8.1'
136132
}
@@ -170,8 +166,8 @@ def projectMod = project(':' + settings.modname) {
170166
}
171167
dependencies {
172168
// World Edit
173-
compile 'com.sk89q.worldedit:worldedit-core:7.2.10'
174-
worldEditLibs ('com.sk89q.worldedit:worldedit-core:7.2.10') {
169+
compile 'com.sk89q.worldedit:worldedit-core:7.2.7'
170+
worldEditLibs ('com.sk89q.worldedit:worldedit-core:7.2.7') {
175171
exclude group: 'com.ibm.icu' // not used in worldedit at all
176172
exclude group: 'org.antlr', module: 'antlr4' // only reserves the runtime package
177173
exclude group: 'org.yaml' // worldedit only uses yaml stuffs in bukkit

src/main/java/carpet/worldedit/CarpetWorldEdit.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public class CarpetWorldEdit
8181
private static final Logger LOGGER = LogManagerCompat.getLogger();
8282

8383
public static final String MOD_ID = "worldedit";
84-
public static final String VERSION = "7.2.10";
84+
public static final String VERSION = "7.2.6";
8585

8686
public static final String CUI_PLUGIN_CHANNEL = "cui";
8787
public static final ResourceLocation CUI_IDENTIFIER = new ResourceLocation(CarpetWorldEdit.MOD_ID, CarpetWorldEdit.CUI_PLUGIN_CHANNEL);

0 commit comments

Comments
 (0)