diff options
author | Anthony Hilyard <anthony.hilyard@gmail.com> | 2021-11-02 11:20:54 -0700 |
---|---|---|
committer | Anthony Hilyard <anthony.hilyard@gmail.com> | 2021-11-02 11:20:54 -0700 |
commit | f0b99d099fdbfe372b01f40dee32d686940c210b (patch) | |
tree | 1793edde03cb55fb541bade0e49aea29a4ba1d6d /src/main/java/com/anthonyhilyard/iceberg/Loader.java | |
parent | 2b38fda32d059303bed929b7ae634efa4dffc706 (diff) | |
download | Iceberg-f0b99d099fdbfe372b01f40dee32d686940c210b.tar.gz Iceberg-f0b99d099fdbfe372b01f40dee32d686940c210b.tar.bz2 Iceberg-f0b99d099fdbfe372b01f40dee32d686940c210b.zip |
Consolidate item selectors. NewItemPickupEvent is now entirely
client-side.
Diffstat (limited to 'src/main/java/com/anthonyhilyard/iceberg/Loader.java')
-rw-r--r-- | src/main/java/com/anthonyhilyard/iceberg/Loader.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/main/java/com/anthonyhilyard/iceberg/Loader.java b/src/main/java/com/anthonyhilyard/iceberg/Loader.java index 49e9d9c..7b7911b 100644 --- a/src/main/java/com/anthonyhilyard/iceberg/Loader.java +++ b/src/main/java/com/anthonyhilyard/iceberg/Loader.java @@ -1,7 +1,5 @@ package com.anthonyhilyard.iceberg; -import com.anthonyhilyard.iceberg.network.IcebergNetworkProtocol; - import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -32,9 +30,6 @@ public class Loader new IcebergServer(); } - // Register the network protocol. - IcebergNetworkProtocol.register(); - ModLoadingContext.get().registerExtensionPoint(IExtensionPoint.DisplayTest.class, () -> new IExtensionPoint.DisplayTest(() -> "ANY", (remote, isServer) -> true)); } @@ -68,4 +63,4 @@ public class Loader // } // } -}
\ No newline at end of file +} |