From 3ab0dd2e076f38708ab48e62d6545c5371760e4b Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Tue, 1 Dec 2020 12:11:09 -0500 Subject: [PATCH] Don't bother with an entrypoint Fixes #1 --- .../velocitypowered/crossstitch/CrossStitch.java | 14 -------------- src/main/resources/fabric.mod.json | 5 ----- 2 files changed, 19 deletions(-) delete mode 100644 src/main/java/com/velocitypowered/crossstitch/CrossStitch.java diff --git a/src/main/java/com/velocitypowered/crossstitch/CrossStitch.java b/src/main/java/com/velocitypowered/crossstitch/CrossStitch.java deleted file mode 100644 index 0f1acf5..0000000 --- a/src/main/java/com/velocitypowered/crossstitch/CrossStitch.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.velocitypowered.crossstitch; - -import net.fabricmc.api.DedicatedServerModInitializer; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -public class CrossStitch implements DedicatedServerModInitializer { - private static final Logger LOGGER = LogManager.getLogger(CrossStitch.class); - - @Override - public void onInitializeServer() { - LOGGER.info("CrossStitch at your service, binding together your mods and your proxy!"); - } -} diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index d9d12be..3ff0a17 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -14,11 +14,6 @@ "license": "MIT", "icon": "assets/crossstitch/icon.png", "environment": "server", - "entrypoints": { - "main": [ - "com.velocitypowered.crossstitch.CrossStitch" - ] - }, "mixins": [ "crossstitch.mixins.json" ],