updated README

This commit is contained in:
FlorianMichael 2023-03-10 17:40:17 +01:00
parent 480a7008f4
commit 180bab20f6
3 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,6 @@ If you just want to talk or need help with ViaFabricPlus feel free to join my
- [x] ViaLegacy implementation
- [x] ViaAprilFools implementation
- [x] BetaCraft implementation for MP Pass
- [x] Classic command system
## Clientside related Fixes
- [x] Bounding boxes for all versions

View File

@ -138,7 +138,9 @@ public class ViaFabricPlus {
PackFormatsDefinition.load();
ItemReleaseVersionDefinition.load();
ArmorPointsDefinition.load();
PackFormatsDefinition.checkOutdated(SharedConstants.getProtocolVersion());
ClassicProtocolCommands.load();
Runtime.getRuntime().addShutdownHook(new Thread(() -> {

View File

@ -35,7 +35,7 @@ public class HelpCommand implements ICommand {
@Override
public void execute(String[] args) {
sendFeedback(Formatting.GREEN + " Loaded " + Formatting.GOLD + (ClassicProtocolCommands.commands.size() - 1) + Formatting.GREEN + " commands");
sendFeedback(Formatting.GREEN + "Loaded " + Formatting.GOLD + (ClassicProtocolCommands.commands.size() - 1) + Formatting.GREEN + " commands");
for (ICommand command : ClassicProtocolCommands.commands) {
if (command.name().equals(name())) continue;