From 091efb900aad229ab438ebc57993236490b87cc6 Mon Sep 17 00:00:00 2001 From: AlwaysHAK Date: Wed, 26 Mar 2025 15:10:27 +0100 Subject: [PATCH] Scrapped Telekinesis (for now) due to complexity --- README.md | 5 +++-- src/main/java/wtf/hak/survivalfabric/SurvivalFabric.java | 2 -- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 128069a..2fdac82 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,6 @@ As a challenge I'm trying to make it as user-friendly as possible. (It ain't the - [x] Shared Ender Chest - [x] Shared EC Access control (via config) - [x] Vein miner -- [ ] Telekinesis ### Commands @@ -34,5 +33,7 @@ As a challenge I'm trying to make it as user-friendly as possible. (It ain't the ## Features to come -For now there are no more feautures! +Decided to scrap Telekinesis for now due to complexity + +Other than that no more features! Be sure to give your idea by [opening an issue](https://git.hak.wtf/hkuijlman/SurvivalFabric/issues/new) with the label Feature Request \ No newline at end of file diff --git a/src/main/java/wtf/hak/survivalfabric/SurvivalFabric.java b/src/main/java/wtf/hak/survivalfabric/SurvivalFabric.java index ae64b41..3122f1d 100644 --- a/src/main/java/wtf/hak/survivalfabric/SurvivalFabric.java +++ b/src/main/java/wtf/hak/survivalfabric/SurvivalFabric.java @@ -5,9 +5,7 @@ import net.fabricmc.api.ModInitializer; import net.fabricmc.fabric.api.command.v2.CommandRegistrationCallback; import net.fabricmc.fabric.api.event.lifecycle.v1.ServerEntityEvents; import net.fabricmc.fabric.api.event.player.PlayerBlockBreakEvents; -import net.minecraft.entity.Entity; import net.minecraft.server.network.ServerPlayerEntity; -import net.minecraft.server.world.ServerWorld; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import wtf.hak.survivalfabric.commands.ReloadConfigCommand;