diff --git a/build-data/divinemc.at b/build-data/divinemc.at index b0f5ab6..3384a7b 100644 --- a/build-data/divinemc.at +++ b/build-data/divinemc.at @@ -84,3 +84,4 @@ public net.minecraft.world.level.levelgen.synth.PerlinNoise lowestFreqValueFacto public net.minecraft.world.level.levelgen.synth.PerlinNoise noiseLevels public net.minecraft.world.level.levelgen.synth.SimplexNoise p public net.minecraft.world.level.pathfinder.SwimNodeEvaluator allowBreaching +public-f ca.spottedleaf.moonrise.paper.PaperHooks diff --git a/divinemc-server/paper-patches/features/0001-Rebrand.patch b/divinemc-server/paper-patches/features/0001-Rebrand.patch index 4c4ac97..cf01468 100644 --- a/divinemc-server/paper-patches/features/0001-Rebrand.patch +++ b/divinemc-server/paper-patches/features/0001-Rebrand.patch @@ -315,6 +315,13 @@ index 776bc01784b53e3f1d9a35046109c3b9ee4f0882..3731ca80ed58cd385cd66ffbe67f2eea } logger.log(Level.SEVERE, "------------------------------"); +diff --git a/src/main/resources/META-INF/services/ca.spottedleaf.moonrise.common.PlatformHooks b/src/main/resources/META-INF/services/ca.spottedleaf.moonrise.common.PlatformHooks +index e57c3ca79677b1dfe7cf3db36f0406de7ea5bd0a..fc80cbc5dbb49e7a8e251a47c9c05e0c2b20e8d0 100644 +--- a/src/main/resources/META-INF/services/ca.spottedleaf.moonrise.common.PlatformHooks ++++ b/src/main/resources/META-INF/services/ca.spottedleaf.moonrise.common.PlatformHooks +@@ -1 +1 @@ +-ca.spottedleaf.moonrise.paper.PaperHooks ++org.bxteam.divinemc.DivineHooks diff --git a/src/main/resources/logo.png b/src/main/resources/logo.png index 518591dd83289e041a16e2c2e7d7e7640d4b2e1b..f54753531b3bf2e8b5377f342465e727c7da98f2 100644 GIT binary patch diff --git a/divinemc-server/src/main/java/org/bxteam/divinemc/DivineHooks.java b/divinemc-server/src/main/java/org/bxteam/divinemc/DivineHooks.java new file mode 100644 index 0000000..66146d0 --- /dev/null +++ b/divinemc-server/src/main/java/org/bxteam/divinemc/DivineHooks.java @@ -0,0 +1,10 @@ +package org.bxteam.divinemc; + +import ca.spottedleaf.moonrise.paper.PaperHooks; + +public final class DivineHooks extends PaperHooks { + @Override + public String getBrand() { + return "DivineMC"; + } +}