Skip to content

GameStopEvent

Package: dev.despical.tnttag.api.events.game

Use isQuickStop() to distinguish an administrative or forced stop from normal game completion.

@EventHandler
public void onGameStop(GameStopEvent event) {
if (event.isQuickStop()) {
// Skip normal completion handling.
}
}

The event also inherits getArena() and cannot be cancelled.