Package net.minestom.server.event.player
Class PlayerGameModeChangeEvent
java.lang.Object
net.minestom.server.event.player.PlayerGameModeChangeEvent
- All Implemented Interfaces:
Event,CancellableEvent,EntityEvent,EntityInstanceEvent,InstanceEvent,PlayerEvent,PlayerInstanceEvent
public class PlayerGameModeChangeEvent
extends Object
implements PlayerInstanceEvent, CancellableEvent
Called when the gamemode of a player is being modified.
-
Constructor Summary
ConstructorsConstructorDescriptionPlayerGameModeChangeEvent(@NotNull Player player, @NotNull GameMode newGameMode) -
Method Summary
Modifier and TypeMethodDescription@NotNull GameModeGets the target gamemode.@NotNull PlayerGets the player.booleanGets if theEventshould be cancelled or not.voidsetCancelled(boolean cancel) Marks theEventas cancelled or not.voidsetNewGameMode(@NotNull GameMode newGameMode) Changes the target gamemode.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.minestom.server.event.trait.EntityInstanceEvent
getInstanceMethods inherited from interface net.minestom.server.event.trait.PlayerEvent
getEntity
-
Constructor Details
-
PlayerGameModeChangeEvent
-
-
Method Details
-
getNewGameMode
Gets the target gamemode.- Returns:
- the target gamemode
-
setNewGameMode
Changes the target gamemode.- Parameters:
newGameMode- the new target gamemode
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableEventGets if theEventshould be cancelled or not.- Specified by:
isCancelledin interfaceCancellableEvent- Returns:
- true if the event should be cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableEventMarks theEventas cancelled or not.- Specified by:
setCancelledin interfaceCancellableEvent- Parameters:
cancel- true if the event should be cancelled, false otherwise
-
getPlayer
Description copied from interface:PlayerEventGets the player.- Specified by:
getPlayerin interfacePlayerEvent- Returns:
- the player
-