#3540: Add TextComponent#fromLegacy() as an array-free alternative to #fromLegacyText()
This commit is contained in:
parent
0f5f09b6c5
commit
0d45378986
@ -105,13 +105,13 @@ public class ServerPing
|
|||||||
@Deprecated
|
@Deprecated
|
||||||
public ServerPing(Protocol version, Players players, String description, String favicon)
|
public ServerPing(Protocol version, Players players, String description, String favicon)
|
||||||
{
|
{
|
||||||
this( version, players, new TextComponent( TextComponent.fromLegacyText( description ) ), favicon == null ? null : Favicon.create( favicon ) );
|
this( version, players, TextComponent.fromLegacy( description ), favicon == null ? null : Favicon.create( favicon ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public ServerPing(Protocol version, Players players, String description, Favicon favicon)
|
public ServerPing(Protocol version, Players players, String description, Favicon favicon)
|
||||||
{
|
{
|
||||||
this( version, players, new TextComponent( TextComponent.fromLegacyText( description ) ), favicon );
|
this( version, players, TextComponent.fromLegacy( description ), favicon );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
@Deprecated
|
||||||
@ -139,7 +139,7 @@ public class ServerPing
|
|||||||
@Deprecated
|
@Deprecated
|
||||||
public void setDescription(String description)
|
public void setDescription(String description)
|
||||||
{
|
{
|
||||||
this.description = new TextComponent( TextComponent.fromLegacyText( description ) );
|
this.description = TextComponent.fromLegacy( description );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
@Deprecated
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
package net.md_5.bungee.api.event;
|
package net.md_5.bungee.api.event;
|
||||||
|
|
||||||
import lombok.AccessLevel;
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
import lombok.Setter;
|
|
||||||
import lombok.ToString;
|
import lombok.ToString;
|
||||||
import net.md_5.bungee.api.Callback;
|
import net.md_5.bungee.api.Callback;
|
||||||
import net.md_5.bungee.api.chat.BaseComponent;
|
import net.md_5.bungee.api.chat.BaseComponent;
|
||||||
@ -27,8 +25,7 @@ public class LoginEvent extends AsyncEvent<LoginEvent> implements Cancellable
|
|||||||
/**
|
/**
|
||||||
* Message to use when kicking if this event is canceled.
|
* Message to use when kicking if this event is canceled.
|
||||||
*/
|
*/
|
||||||
@Setter(AccessLevel.NONE)
|
private BaseComponent reason;
|
||||||
private BaseComponent[] cancelReasonComponents;
|
|
||||||
/**
|
/**
|
||||||
* Connection attempting to login.
|
* Connection attempting to login.
|
||||||
*/
|
*/
|
||||||
@ -42,28 +39,44 @@ public class LoginEvent extends AsyncEvent<LoginEvent> implements Cancellable
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @return reason to be displayed
|
* @return reason to be displayed
|
||||||
* @deprecated Use component methods instead.
|
* @deprecated use component methods instead
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public String getCancelReason()
|
public String getCancelReason()
|
||||||
{
|
{
|
||||||
return BaseComponent.toLegacyText( getCancelReasonComponents() );
|
return TextComponent.toLegacyText( getReason() );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param cancelReason reason to be displayed
|
* @param cancelReason reason to be displayed
|
||||||
* @deprecated Use
|
* @deprecated use component methods instead
|
||||||
* {@link #setCancelReason(net.md_5.bungee.api.chat.BaseComponent...)}
|
|
||||||
* instead.
|
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public void setCancelReason(String cancelReason)
|
public void setCancelReason(String cancelReason)
|
||||||
{
|
{
|
||||||
setCancelReason( TextComponent.fromLegacyText( cancelReason ) );
|
setReason( TextComponent.fromLegacy( cancelReason ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return reason to be displayed
|
||||||
|
* @deprecated use single component methods instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public BaseComponent[] getCancelReasonComponents()
|
||||||
|
{
|
||||||
|
return new BaseComponent[]
|
||||||
|
{
|
||||||
|
getReason()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param cancelReason reason to be displayed
|
||||||
|
* @deprecated use single component methods instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
public void setCancelReason(BaseComponent... cancelReason)
|
public void setCancelReason(BaseComponent... cancelReason)
|
||||||
{
|
{
|
||||||
this.cancelReasonComponents = cancelReason;
|
setReason( TextComponent.fromArray( cancelReason ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
package net.md_5.bungee.api.event;
|
package net.md_5.bungee.api.event;
|
||||||
|
|
||||||
import lombok.AccessLevel;
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
import lombok.Setter;
|
|
||||||
import lombok.ToString;
|
import lombok.ToString;
|
||||||
import net.md_5.bungee.api.Callback;
|
import net.md_5.bungee.api.Callback;
|
||||||
import net.md_5.bungee.api.chat.BaseComponent;
|
import net.md_5.bungee.api.chat.BaseComponent;
|
||||||
@ -32,8 +30,7 @@ public class PreLoginEvent extends AsyncEvent<PreLoginEvent> implements Cancella
|
|||||||
/**
|
/**
|
||||||
* Message to use when kicking if this event is canceled.
|
* Message to use when kicking if this event is canceled.
|
||||||
*/
|
*/
|
||||||
@Setter(AccessLevel.NONE)
|
private BaseComponent reason;
|
||||||
private BaseComponent[] cancelReasonComponents;
|
|
||||||
/**
|
/**
|
||||||
* Connection attempting to login.
|
* Connection attempting to login.
|
||||||
*/
|
*/
|
||||||
@ -47,28 +44,44 @@ public class PreLoginEvent extends AsyncEvent<PreLoginEvent> implements Cancella
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @return reason to be displayed
|
* @return reason to be displayed
|
||||||
* @deprecated Use component methods instead.
|
* @deprecated use component methods instead
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public String getCancelReason()
|
public String getCancelReason()
|
||||||
{
|
{
|
||||||
return BaseComponent.toLegacyText( getCancelReasonComponents() );
|
return BaseComponent.toLegacyText( getReason() );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param cancelReason reason to be displayed
|
* @param cancelReason reason to be displayed
|
||||||
* @deprecated Use
|
* @deprecated Use component methods instead
|
||||||
* {@link #setCancelReason(net.md_5.bungee.api.chat.BaseComponent...)}
|
|
||||||
* instead.
|
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public void setCancelReason(String cancelReason)
|
public void setCancelReason(String cancelReason)
|
||||||
{
|
{
|
||||||
setCancelReason( TextComponent.fromLegacyText( cancelReason ) );
|
setReason( TextComponent.fromLegacy( cancelReason ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return reason to be displayed
|
||||||
|
* @deprecated use single component methods instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public BaseComponent[] getCancelReasonComponents()
|
||||||
|
{
|
||||||
|
return new BaseComponent[]
|
||||||
|
{
|
||||||
|
getReason()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param cancelReason reason to be displayed
|
||||||
|
* @deprecated use single component methods instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
public void setCancelReason(BaseComponent... cancelReason)
|
public void setCancelReason(BaseComponent... cancelReason)
|
||||||
{
|
{
|
||||||
this.cancelReasonComponents = cancelReason;
|
setReason( TextComponent.fromArray( cancelReason ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ public class ServerKickEvent extends Event implements Cancellable
|
|||||||
/**
|
/**
|
||||||
* Kick reason.
|
* Kick reason.
|
||||||
*/
|
*/
|
||||||
private BaseComponent[] kickReasonComponent;
|
private BaseComponent reason;
|
||||||
/**
|
/**
|
||||||
* Server to send player to if this event is cancelled.
|
* Server to send player to if this event is cancelled.
|
||||||
*/
|
*/
|
||||||
@ -63,24 +63,61 @@ public class ServerKickEvent extends Event implements Cancellable
|
|||||||
this( player, player.getServer().getInfo(), kickReasonComponent, cancelServer, state );
|
this( player, player.getServer().getInfo(), kickReasonComponent, cancelServer, state );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
public ServerKickEvent(ProxiedPlayer player, ServerInfo kickedFrom, BaseComponent[] kickReasonComponent, ServerInfo cancelServer, State state)
|
public ServerKickEvent(ProxiedPlayer player, ServerInfo kickedFrom, BaseComponent[] kickReasonComponent, ServerInfo cancelServer, State state)
|
||||||
|
{
|
||||||
|
this( player, kickedFrom, TextComponent.fromArray( kickReasonComponent ), cancelServer, state );
|
||||||
|
}
|
||||||
|
|
||||||
|
public ServerKickEvent(ProxiedPlayer player, ServerInfo kickedFrom, BaseComponent reason, ServerInfo cancelServer, State state)
|
||||||
{
|
{
|
||||||
this.player = player;
|
this.player = player;
|
||||||
this.kickedFrom = kickedFrom;
|
this.kickedFrom = kickedFrom;
|
||||||
this.kickReasonComponent = kickReasonComponent;
|
this.reason = reason;
|
||||||
this.cancelServer = cancelServer;
|
this.cancelServer = cancelServer;
|
||||||
this.state = state;
|
this.state = state;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the kick reason
|
||||||
|
* @deprecated use component methods instead
|
||||||
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public String getKickReason()
|
public String getKickReason()
|
||||||
{
|
{
|
||||||
return BaseComponent.toLegacyText( kickReasonComponent );
|
return BaseComponent.toLegacyText( getReason() );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param reason the kick reason
|
||||||
|
* @deprecated use component methods instead
|
||||||
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public void setKickReason(String reason)
|
public void setKickReason(String reason)
|
||||||
{
|
{
|
||||||
kickReasonComponent = TextComponent.fromLegacyText( reason );
|
this.setReason( TextComponent.fromLegacy( reason ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the kick reason
|
||||||
|
* @deprecated use single component methods instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public BaseComponent[] getKickReasonComponent()
|
||||||
|
{
|
||||||
|
return new BaseComponent[]
|
||||||
|
{
|
||||||
|
getReason()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param kickReasonComponent the kick reason
|
||||||
|
* @deprecated use single component methods instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void setKickReasonComponent(BaseComponent[] kickReasonComponent)
|
||||||
|
{
|
||||||
|
this.setReason( TextComponent.fromArray( kickReasonComponent ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package net.md_5.bungee.api.chat;
|
|||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.function.Consumer;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
@ -27,6 +28,41 @@ public final class TextComponent extends BaseComponent
|
|||||||
* @param message the text to convert
|
* @param message the text to convert
|
||||||
* @return the components needed to print the message to the client
|
* @return the components needed to print the message to the client
|
||||||
*/
|
*/
|
||||||
|
public static BaseComponent fromLegacy(String message)
|
||||||
|
{
|
||||||
|
return fromLegacy( message, ChatColor.WHITE );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts the old formatting system that used
|
||||||
|
* {@link net.md_5.bungee.api.ChatColor#COLOR_CHAR} into the new json based
|
||||||
|
* system.
|
||||||
|
*
|
||||||
|
* @param message the text to convert
|
||||||
|
* @param defaultColor color to use when no formatting is to be applied
|
||||||
|
* (i.e. after ChatColor.RESET).
|
||||||
|
* @return the components needed to print the message to the client
|
||||||
|
*/
|
||||||
|
public static BaseComponent fromLegacy(String message, ChatColor defaultColor)
|
||||||
|
{
|
||||||
|
ComponentBuilder componentBuilder = new ComponentBuilder();
|
||||||
|
populateComponentStructure( message, defaultColor, componentBuilder::append );
|
||||||
|
return componentBuilder.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts the old formatting system that used
|
||||||
|
* {@link net.md_5.bungee.api.ChatColor#COLOR_CHAR} into the new json based
|
||||||
|
* system.
|
||||||
|
*
|
||||||
|
* @param message the text to convert
|
||||||
|
* @return the components needed to print the message to the client
|
||||||
|
* @deprecated {@link #fromLegacy(String)} is preferred as it will
|
||||||
|
* consolidate all components into a single BaseComponent with extra
|
||||||
|
* contents as opposed to an array of components which is non-standard and
|
||||||
|
* may result in unexpected behavior.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
public static BaseComponent[] fromLegacyText(String message)
|
public static BaseComponent[] fromLegacyText(String message)
|
||||||
{
|
{
|
||||||
return fromLegacyText( message, ChatColor.WHITE );
|
return fromLegacyText( message, ChatColor.WHITE );
|
||||||
@ -41,10 +77,21 @@ public final class TextComponent extends BaseComponent
|
|||||||
* @param defaultColor color to use when no formatting is to be applied
|
* @param defaultColor color to use when no formatting is to be applied
|
||||||
* (i.e. after ChatColor.RESET).
|
* (i.e. after ChatColor.RESET).
|
||||||
* @return the components needed to print the message to the client
|
* @return the components needed to print the message to the client
|
||||||
|
* @deprecated {@link #fromLegacy(String, ChatColor)} is preferred as it
|
||||||
|
* will consolidate all components into a single BaseComponent with extra
|
||||||
|
* contents as opposed to an array of components which is non-standard and
|
||||||
|
* may result in unexpected behavior.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public static BaseComponent[] fromLegacyText(String message, ChatColor defaultColor)
|
public static BaseComponent[] fromLegacyText(String message, ChatColor defaultColor)
|
||||||
{
|
{
|
||||||
ArrayList<BaseComponent> components = new ArrayList<>();
|
ArrayList<BaseComponent> components = new ArrayList<>();
|
||||||
|
populateComponentStructure( message, defaultColor, components::add );
|
||||||
|
return components.toArray( new BaseComponent[ 0 ] );
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void populateComponentStructure(String message, ChatColor defaultColor, Consumer<BaseComponent> appender)
|
||||||
|
{
|
||||||
StringBuilder builder = new StringBuilder();
|
StringBuilder builder = new StringBuilder();
|
||||||
TextComponent component = new TextComponent();
|
TextComponent component = new TextComponent();
|
||||||
Matcher matcher = url.matcher( message );
|
Matcher matcher = url.matcher( message );
|
||||||
@ -94,7 +141,7 @@ public final class TextComponent extends BaseComponent
|
|||||||
component = new TextComponent( old );
|
component = new TextComponent( old );
|
||||||
old.setText( builder.toString() );
|
old.setText( builder.toString() );
|
||||||
builder = new StringBuilder();
|
builder = new StringBuilder();
|
||||||
components.add( old );
|
appender.accept( old );
|
||||||
}
|
}
|
||||||
if ( format == ChatColor.BOLD )
|
if ( format == ChatColor.BOLD )
|
||||||
{
|
{
|
||||||
@ -137,7 +184,7 @@ public final class TextComponent extends BaseComponent
|
|||||||
component = new TextComponent( old );
|
component = new TextComponent( old );
|
||||||
old.setText( builder.toString() );
|
old.setText( builder.toString() );
|
||||||
builder = new StringBuilder();
|
builder = new StringBuilder();
|
||||||
components.add( old );
|
appender.accept( old );
|
||||||
}
|
}
|
||||||
|
|
||||||
TextComponent old = component;
|
TextComponent old = component;
|
||||||
@ -146,7 +193,7 @@ public final class TextComponent extends BaseComponent
|
|||||||
component.setText( urlString );
|
component.setText( urlString );
|
||||||
component.setClickEvent( new ClickEvent( ClickEvent.Action.OPEN_URL,
|
component.setClickEvent( new ClickEvent( ClickEvent.Action.OPEN_URL,
|
||||||
urlString.startsWith( "http" ) ? urlString : "http://" + urlString ) );
|
urlString.startsWith( "http" ) ? urlString : "http://" + urlString ) );
|
||||||
components.add( component );
|
appender.accept( component );
|
||||||
i += pos - i - 1;
|
i += pos - i - 1;
|
||||||
component = old;
|
component = old;
|
||||||
continue;
|
continue;
|
||||||
@ -155,9 +202,7 @@ public final class TextComponent extends BaseComponent
|
|||||||
}
|
}
|
||||||
|
|
||||||
component.setText( builder.toString() );
|
component.setText( builder.toString() );
|
||||||
components.add( component );
|
appender.accept( component );
|
||||||
|
|
||||||
return components.toArray( new BaseComponent[ 0 ] );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -41,7 +41,7 @@ public class CommandAlert extends Command
|
|||||||
|
|
||||||
String message = builder.substring( 0, builder.length() - 1 );
|
String message = builder.substring( 0, builder.length() - 1 );
|
||||||
|
|
||||||
ProxyServer.getInstance().broadcast( TextComponent.fromLegacyText( message ) );
|
ProxyServer.getInstance().broadcast( TextComponent.fromLegacy( message ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -33,18 +33,18 @@ public class CommandKick extends Command implements TabExecutor
|
|||||||
|
|
||||||
if ( player == null )
|
if ( player == null )
|
||||||
{
|
{
|
||||||
sender.sendMessage( TextComponent.fromLegacyText( ProxyServer.getInstance().getTranslation( "user_not_online" ) ) );
|
sender.sendMessage( TextComponent.fromLegacy( ProxyServer.getInstance().getTranslation( "user_not_online" ) ) );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( args.length == 1 )
|
if ( args.length == 1 )
|
||||||
{
|
{
|
||||||
player.disconnect( TextComponent.fromLegacyText( ProxyServer.getInstance().getTranslation( "kick_message" ) ) );
|
player.disconnect( TextComponent.fromLegacy( ProxyServer.getInstance().getTranslation( "kick_message" ) ) );
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
String[] reason = new String[ args.length - 1 ];
|
String[] reason = new String[ args.length - 1 ];
|
||||||
System.arraycopy( args, 1, reason, 0, reason.length );
|
System.arraycopy( args, 1, reason, 0, reason.length );
|
||||||
player.disconnect( TextComponent.fromLegacyText( ChatColor.translateAlternateColorCodes( '&', Joiner.on( ' ' ).join( reason ) ) ) );
|
player.disconnect( TextComponent.fromLegacy( ChatColor.translateAlternateColorCodes( '&', Joiner.on( ' ' ).join( reason ) ) ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -730,13 +730,13 @@ public class BungeeCord extends ProxyServer
|
|||||||
@Override
|
@Override
|
||||||
public void broadcast(String message)
|
public void broadcast(String message)
|
||||||
{
|
{
|
||||||
broadcast( TextComponent.fromLegacyText( message ) );
|
broadcast( TextComponent.fromLegacy( message ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void broadcast(BaseComponent... message)
|
public void broadcast(BaseComponent... message)
|
||||||
{
|
{
|
||||||
getConsole().sendMessage( BaseComponent.toLegacyText( message ) );
|
getConsole().sendMessage( message );
|
||||||
for ( ProxiedPlayer player : getPlayers() )
|
for ( ProxiedPlayer player : getPlayers() )
|
||||||
{
|
{
|
||||||
player.sendMessage( message );
|
player.sendMessage( message );
|
||||||
@ -746,7 +746,7 @@ public class BungeeCord extends ProxyServer
|
|||||||
@Override
|
@Override
|
||||||
public void broadcast(BaseComponent message)
|
public void broadcast(BaseComponent message)
|
||||||
{
|
{
|
||||||
getConsole().sendMessage( message.toLegacyText() );
|
getConsole().sendMessage( message );
|
||||||
for ( ProxiedPlayer player : getPlayers() )
|
for ( ProxiedPlayer player : getPlayers() )
|
||||||
{
|
{
|
||||||
player.sendMessage( message );
|
player.sendMessage( message );
|
||||||
|
@ -406,7 +406,7 @@ public final class UserConnection implements ProxiedPlayer
|
|||||||
@Override
|
@Override
|
||||||
public void disconnect(String reason)
|
public void disconnect(String reason)
|
||||||
{
|
{
|
||||||
disconnect( TextComponent.fromLegacyText( reason ) );
|
disconnect( TextComponent.fromLegacy( reason ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -454,7 +454,7 @@ public final class UserConnection implements ProxiedPlayer
|
|||||||
@Override
|
@Override
|
||||||
public void sendMessage(String message)
|
public void sendMessage(String message)
|
||||||
{
|
{
|
||||||
sendMessage( TextComponent.fromLegacyText( message ) );
|
sendMessage( TextComponent.fromLegacy( message ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -433,8 +433,8 @@ public class InitialHandler extends PacketHandler implements PendingConnection
|
|||||||
{
|
{
|
||||||
if ( result.isCancelled() )
|
if ( result.isCancelled() )
|
||||||
{
|
{
|
||||||
BaseComponent[] reason = result.getCancelReasonComponents();
|
BaseComponent reason = result.getReason();
|
||||||
disconnect( ( reason != null ) ? reason : TextComponent.fromLegacyText( bungee.getTranslation( "kick_message" ) ) );
|
disconnect( ( reason != null ) ? reason : TextComponent.fromLegacy( bungee.getTranslation( "kick_message" ) ) );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ( ch.isClosed() )
|
if ( ch.isClosed() )
|
||||||
@ -577,8 +577,8 @@ public class InitialHandler extends PacketHandler implements PendingConnection
|
|||||||
{
|
{
|
||||||
if ( result.isCancelled() )
|
if ( result.isCancelled() )
|
||||||
{
|
{
|
||||||
BaseComponent[] reason = result.getCancelReasonComponents();
|
BaseComponent reason = result.getReason();
|
||||||
disconnect( ( reason != null ) ? reason : TextComponent.fromLegacyText( bungee.getTranslation( "kick_message" ) ) );
|
disconnect( ( reason != null ) ? reason : TextComponent.fromLegacy( bungee.getTranslation( "kick_message" ) ) );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ( ch.isClosed() )
|
if ( ch.isClosed() )
|
||||||
@ -645,7 +645,7 @@ public class InitialHandler extends PacketHandler implements PendingConnection
|
|||||||
{
|
{
|
||||||
if ( canSendKickMessage() )
|
if ( canSendKickMessage() )
|
||||||
{
|
{
|
||||||
disconnect( TextComponent.fromLegacyText( reason ) );
|
disconnect( TextComponent.fromLegacy( reason ) );
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
ch.close();
|
ch.close();
|
||||||
|
Loading…
Reference in New Issue
Block a user