mirror of
https://github.com/TotalFreedomMC/BukkitTelnet.git
synced 2024-10-31 17:29:18 +00:00
updated legacy version to support 1.16.5
This commit is contained in:
parent
09346eaab6
commit
3436800815
2
pom.xml
2
pom.xml
|
@ -49,7 +49,7 @@
|
|||
<dependency>
|
||||
<groupId>org.spigotmc</groupId>
|
||||
<artifactId>spigot-api</artifactId>
|
||||
<version>1.15-R0.1-SNAPSHOT</version>
|
||||
<version>1.16.5-R0.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package me.totalfreedom.bukkittelnet.session;
|
||||
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
import net.md_5.bungee.api.chat.BaseComponent;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Server;
|
||||
|
@ -181,4 +182,19 @@ public class SessionCommandSender implements ConsoleCommandSender
|
|||
};
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendMessage(UUID uuid, String string) {
|
||||
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendMessage(UUID uuid, String[] strings) {
|
||||
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendRawMessage(UUID uuid, String string) {
|
||||
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue