Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
calcastor committed Jun 17, 2024
1 parent 365c40e commit 99f5b98
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 238 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Java CI](https://github.com/MrMicky-FR/ViaChatFixer/actions/workflows/build.yml/badge.svg)](https://github.com/MrMicky-FR/ViaChatFixer/actions/workflows/build.yml)

ViaChatFixer is a Bukkit and Sponge plugin that allows 1.11+ players to have longer chat messages on 1.8-1.10 servers with ViaVersion
ViaChatFixer is a Bukkit plugin that allows 1.11+ players to have longer chat messages on 1.8-1.10 servers with ViaVersion

In Minecraft 1.11, the maximum messages length has gone from 100 characters to 256 characters. So if your server is under 1.11, 1.11 and higher
players will have their chat messages cut at 100 characters.
Expand All @@ -23,7 +23,7 @@ All players online during a reload will not be able to have longer chat messages

## Supported Platforms

ViaChatFixer can be installed on Bukkit/Spigot/Paper servers or on Sponge servers.
ViaChatFixer can be installed on Bukkit, Spigot, or Paper servers.

If you are using a proxy, ViaVersion and ViaChatFixer must be installed on the backend servers.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package fr.mrmicky.viachatfixer.bukkit;
package fr.mrmicky.viachatfixer;

import fr.mrmicky.viachatfixer.common.ChatHandler;
import fr.mrmicky.viachatfixer.common.ViaChatFixerPlatform;
Expand All @@ -11,7 +11,7 @@
import org.bukkit.event.player.PlayerCommandPreprocessEvent;
import org.bukkit.plugin.java.JavaPlugin;

public final class ViaChatFixerBukkit extends JavaPlugin implements Listener, ViaChatFixerPlatform {
public final class BukkitPlugin extends JavaPlugin implements Listener, ViaChatFixerPlatform {

private LoggerAdapter logger;
private ChatHandler chatHandler;
Expand Down
2 changes: 1 addition & 1 deletion bukkit/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ author: MrMicky
description: Allow 1.11+ players to have longer chat messages on 1.8-1.10 servers with ViaVersion
website: https://www.spigotmc.org/resources/viachatfixer.61955/
softdepend: [ViaVersion]
main: fr.mrmicky.viachatfixer.bukkit.ViaChatFixerBukkit
main: fr.mrmicky.viachatfixer.BukkitPlugin
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<modules>
<module>common</module>
<module>bukkit</module>
<module>sponge</module>
<module>universal</module>
</modules>

Expand Down
57 changes: 0 additions & 57 deletions sponge/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions universal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>fr.mrmicky</groupId>
<artifactId>viachatfixer-sponge</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 99f5b98

Please sign in to comment.