mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 15:30:19 +01:00
Add GameMode#isInvulnerable
This commit is contained in:
parent
cbb0d28ebe
commit
925c5a6760
1 changed files with 12 additions and 0 deletions
|
@ -79,4 +79,16 @@ public enum GameMode implements net.kyori.adventure.translation.Translatable { /
|
||||||
BY_ID.put(mode.getValue(), mode);
|
BY_ID.put(mode.getValue(), mode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Paper start - Add GameMode#isInvulnerable
|
||||||
|
/**
|
||||||
|
* Checks whether this game mode is invulnerable
|
||||||
|
* (i.e. is either {@link #CREATIVE} or {@link #SPECTATOR})
|
||||||
|
*
|
||||||
|
* @return whether this game mode is invulnerable
|
||||||
|
*/
|
||||||
|
public boolean isInvulnerable() {
|
||||||
|
return this == CREATIVE || this == SPECTATOR;
|
||||||
|
}
|
||||||
|
// Paper end - Add GameMode#isInvulnerable
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue