Skip to content

Commit acf3726

Browse files
committed
updated mod worldedit to 7.2.10
1 parent e64a824 commit acf3726

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ def projectMod = project(':' + settings.modname) {
129129
// force world edit to use the same log4j as minecraft 1.13.2
130130
force 'org.apache.logging.log4j:log4j-api:2.8.1'
131131
force 'org.apache.logging.log4j:log4j-core:2.8.1'
132+
// force world edit to use the same guava as minecraft 1.13.2
133+
force 'com.google.guava:guava:21.0'
132134
}
133135
}
134136
}
@@ -166,8 +168,8 @@ def projectMod = project(':' + settings.modname) {
166168
}
167169
dependencies {
168170
// World Edit
169-
compile 'com.sk89q.worldedit:worldedit-core:7.2.6'
170-
worldEditLibs ('com.sk89q.worldedit:worldedit-core:7.2.6') {
171+
compile 'com.sk89q.worldedit:worldedit-core:7.2.10'
172+
worldEditLibs ('com.sk89q.worldedit:worldedit-core:7.2.10') {
171173
exclude group: 'com.ibm.icu' // not used in worldedit at all
172174
exclude group: 'org.antlr', module: 'antlr4' // only reserves the runtime package
173175
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.6";
84+
public static final String VERSION = "7.2.10";
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);

src/main/java/carpet/worldedit/CarpetWorldEditAccess.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ public static EnumActionResult onRightClickBlock(EntityPlayer playerEntity, Worl
107107
return EnumActionResult.PASS;
108108
}
109109

110-
@Nullable
111110
public static void onLeftClickAir(EntityPlayer playerEntity)
112111
{
113112
if (TISCMConfig.MOD_WORLDEDIT)

0 commit comments

Comments
 (0)