diff options
| author | aidn5 <aydin.atrakchi@gmail.com> | 2022-08-09 18:18:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-09 18:18:50 +0200 |
| commit | a1b37274907e404812387780ad9370af3789b90e (patch) | |
| tree | 40e296c145a2ce17927f34e692752006b8594519 /src/main/java/io/github/moulberry/notenoughupdates/commands/dungeon/MapCommand.java | |
| parent | c08749f615e59dc4a045d119af19ae093adffdc1 (diff) | |
| download | notenoughupdates-a1b37274907e404812387780ad9370af3789b90e.tar.gz notenoughupdates-a1b37274907e404812387780ad9370af3789b90e.tar.bz2 notenoughupdates-a1b37274907e404812387780ad9370af3789b90e.zip | |
The old dungeon map (#213)
* Apply basic fix to dungeon map offset
* return the old neu map
* bugfix: detect entrance floor
* ratio
* add back setting
Co-authored-by: nopo <noahogno@gmail.com>
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/commands/dungeon/MapCommand.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/commands/dungeon/MapCommand.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/commands/dungeon/MapCommand.java b/src/main/java/io/github/moulberry/notenoughupdates/commands/dungeon/MapCommand.java index 83db26bb..f5381adb 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/commands/dungeon/MapCommand.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/commands/dungeon/MapCommand.java @@ -50,11 +50,6 @@ public class MapCommand extends ClientCommandBase { @Override public void processCommand(ICommandSender sender, String[] args) throws CommandException { - if (!NotEnoughUpdates.INSTANCE.config.hidden.dev) { - Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText( - EnumChatFormatting.RED + "[NEU] The map does not work right now. You can use the map from other mods, for example: SkyblockAddons, DungeonsGuide or Skytils.")); - return; - } if (NotEnoughUpdates.INSTANCE.colourMap == null) { try ( |
