PaperMC/patches/api/0471-Add-GameMode-isInvulnerable.patch
Riley Park f17519338b
Expose server build information (#10729)
* Expose server build information

* squash patches

* final tweaks

---------

Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com>
Co-authored-by: masmc05 <masmc05@gmail.com>
2024-05-15 17:06:59 -07:00

27 lines
1 KiB
Diff

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
}