mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-11 01:51:37 +01:00
Add GameMode#isInvulnerable
This commit is contained in:
parent
cbb0d28ebe
commit
925c5a6760
@ -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 New Issue
Block a user