Skip to content

Commit

Permalink
Port from beta to full-release Neoforge, drop WECUI support since we …
Browse files Browse the repository at this point in the history
…don't care for that
  • Loading branch information
Drullkus committed Apr 7, 2024
1 parent b624c5c commit 4033c56
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 110 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ minecraft_version=1.20.4
# as they do not follow standard versioning conventions.
minecraft_version_range=[1.20.4,1.21)
# The Neo version must agree with the Minecraft version to get a valid artifact
neo_version=20.4.42-beta
neo_version=20.4.223
# The Neo version range can use any version of Neo as bounds or match the loader version range
neo_version_range=[20.5,)
neo_version_range=[20.4,)
# The loader version range can only use the major version of Neo/FML as bounds
loader_version_range=[1,)

Expand All @@ -28,7 +28,7 @@ mod_name=WorldEdit
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=GPL
# The mod version. See https://semver.org/
mod_version=1.0.0
mod_version=1.0.1
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import com.sk89q.worldedit.extension.platform.Capability;
import com.sk89q.worldedit.extension.platform.Platform;
import com.sk89q.worldedit.extension.platform.PlatformManager;
import com.sk89q.worldedit.neoforge.net.handler.WECUIPacketHandler;
import com.sk89q.worldedit.internal.anvil.ChunkDeleter;
import com.sk89q.worldedit.internal.event.InteractionDebouncer;
import com.sk89q.worldedit.internal.util.LogManagerCompat;
Expand Down Expand Up @@ -59,7 +58,6 @@
import net.neoforged.bus.api.IEventBus;
import net.neoforged.bus.api.SubscribeEvent;
import net.neoforged.fml.IExtensionPoint;
import net.neoforged.fml.ModContainer;
import net.neoforged.fml.ModLoadingContext;
import net.neoforged.fml.common.Mod;
import net.neoforged.fml.event.lifecycle.FMLCommonSetupEvent;
Expand Down Expand Up @@ -152,8 +150,6 @@ private void init(FMLCommonSetupEvent event) {

setupPlatform();

WECUIPacketHandler.init();

LOGGER.info("WorldEdit for NeoForge (version " + getInternalVersion() + ") is loaded");
}

Expand Down

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ WorldEdit is an easy-to-use in-game world editor for Minecraft, supporting both
[[dependencies.worldedit]]
modId="minecraft"
type="required"
versionRange="[1.20.3,)"
versionRange="[1.20.4,)"
ordering="NONE"
side="BOTH"
[[dependencies.worldedit]]
modId="neoforge"
type="required"
versionRange="[20.3.1,)"
versionRange="[20.4.1,)"
ordering="NONE"
side="BOTH"

Expand Down

0 comments on commit 4033c56

Please sign in to comment.