Add GameMode#isInvulnerable (#10633)

This commit is contained in:
SoSeDiK 2024-05-01 20:14:17 +03:00 committed by GitHub
parent 310b47bb96
commit faa7aa266a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: SoSeDiK <mrsosedik@gmail.com>
Date: Wed, 1 May 2024 06:56:21 +0300
Subject: [PATCH] Add GameMode#isInvulnerable
diff --git a/src/main/java/org/bukkit/GameMode.java b/src/main/java/org/bukkit/GameMode.java
index fdc42a79c5af30fdade41ee99245e6641f353571..ddc56524b3bd2bdebba81c61a5600e6f46a4aaa4 100644
--- a/src/main/java/org/bukkit/GameMode.java
+++ b/src/main/java/org/bukkit/GameMode.java
@@ -79,4 +79,16 @@ public enum GameMode implements net.kyori.adventure.translation.Translatable { /
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
}