Package net.minecraftforge.event
Class ServerChatEvent
java.lang.Object
net.minecraftforge.eventbus.api.Event
net.minecraftforge.event.ServerChatEvent
public class ServerChatEvent
extends net.minecraftforge.eventbus.api.Event
ServerChatEvent is fired whenever a C01PacketChatMessage is processed.
This event is fired via
This event is
If this event is canceled, the chat message is never distributed to all clients.
This event does not have a result.
This event is fired on the
This event is fired via
ForgeHooks.onServerChatEvent(NetHandlerPlayServer, String, ITextComponent),
which is executed by the NetHandlerPlayServer#processChatMessage(CPacketChatMessage)username contains the username of the player sending the chat message.message contains the message being sent.player the instance of EntityPlayerMP for the player sending the chat message.component contains the instance of ChatComponentTranslation for the sent message.This event is
Cancelable. If this event is canceled, the chat message is never distributed to all clients.
This event does not have a result.
Event.HasResultThis event is fired on the
MinecraftForge.EVENT_BUS.-
Nested Class Summary
Nested classes/interfaces inherited from class net.minecraftforge.eventbus.api.Event
net.minecraftforge.eventbus.api.Event.HasResult, net.minecraftforge.eventbus.api.Event.Result -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate ITextComponentprivate final Stringprivate final ServerPlayerEntityprivate final String -
Constructor Summary
ConstructorsConstructorDescriptionServerChatEvent(ServerPlayerEntity player, String message, ITextComponent component) -
Method Summary
Modifier and TypeMethodDescriptionvoidMethods inherited from class net.minecraftforge.eventbus.api.Event
getListenerList, getParentListenerList, getPhase, getResult, hasResult, isCancelable, isCanceled, setCanceled, setPhase, setResult, setup
-
Field Details
-
message
-
username
-
player
-
component
-
-
Constructor Details
-
ServerChatEvent
-
-
Method Details
-
setComponent
-
getComponent
-
getMessage
-
getUsername
-
getPlayer
-