Skip to content

Commit a61a5c0

Browse files
fancyholograms: Add support for 1.21.8
1 parent bf4aa36 commit a61a5c0

7 files changed

Lines changed: 13 additions & 7 deletions

File tree

plugins/fancyholograms-v2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ With this plugin you can create holograms with customizable properties like:
3636

3737
## Installation
3838

39-
Paper **1.19.4** - **1.21.5** with **Java 21** (or higher) is required. Plugin should also work on **Paper** forks.
39+
Paper **1.19.4** - **1.21.8** with **Java 21** (or higher) is required. Plugin should also work on **Paper** forks.
4040

4141
**Spigot** is **not** supported.
4242

plugins/fancyholograms-v2/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.0.146
1+
2.6.0.147

plugins/fancyholograms-v2/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ val supportedVersions =
3131
"1.21.4",
3232
"1.21.5",
3333
"1.21.6",
34+
"1.21.7",
35+
"1.21.8",
3436
)
3537

3638
allprojects {

plugins/fancyholograms-v2/release_deployment_config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"1.21.4",
2121
"1.21.5",
2222
"1.21.6",
23-
"1.21.7"
23+
"1.21.7",
24+
"1.21.8"
2425
],
2526
"channel": "RELEASE",
2627
"loaders": [

plugins/fancyholograms-v2/snapshot_deployment_config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"1.21.4",
2121
"1.21.5",
2222
"1.21.6",
23-
"1.21.7"
23+
"1.21.7",
24+
"1.21.8"
2425
],
2526
"channel": "ALPHA",
2627
"loaders": [

plugins/fancyholograms-v2/src/main/java/de/oliver/fancyholograms/FancyHolograms.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import de.oliver.fancyholograms.commands.FancyHologramsCMD;
1818
import de.oliver.fancyholograms.commands.FancyHologramsTestCMD;
1919
import de.oliver.fancyholograms.commands.HologramCMD;
20-
import de.oliver.fancyholograms.hologram.version.*;
20+
import de.oliver.fancyholograms.hologram.version.HologramImpl;
2121
import de.oliver.fancyholograms.listeners.*;
2222
import de.oliver.fancyholograms.storage.FlatFileHologramStorage;
2323
import de.oliver.fancyholograms.storage.converter.FHConversionRegistry;
@@ -286,7 +286,7 @@ public void reloadCommands() {
286286
private void registerListeners() {
287287
getServer().getPluginManager().registerEvents(new PlayerListener(this), this);
288288
getServer().getPluginManager().registerEvents(new WorldListener(), this);
289-
if (Bukkit.getMinecraftVersion().equals("1.21.4") || Bukkit.getMinecraftVersion().equals("1.21.5") || Bukkit.getMinecraftVersion().equals("1.21.6") || Bukkit.getMinecraftVersion().equals("1.21.7")) {
289+
if (Bukkit.getMinecraftVersion().equals("1.21.4") || Bukkit.getMinecraftVersion().equals("1.21.5") || Bukkit.getMinecraftVersion().equals("1.21.6") || Bukkit.getMinecraftVersion().equals("1.21.7") || Bukkit.getMinecraftVersion().equals("1.21.8")) {
290290
getServer().getPluginManager().registerEvents(new PlayerLoadedListener(), this);
291291
}
292292

plugins/fancynpcs/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ val supportedVersions =
2828
"1.21.3",
2929
"1.21.4",
3030
"1.21.5",
31-
"1.21.6"
31+
"1.21.6",
32+
"1.21.7",
33+
"1.21.8",
3234
)
3335

3436
allprojects {

0 commit comments

Comments
 (0)