Paper/Spigot-Server-Patches/0030-Configurable-end-credits.patch

46 lines
2 KiB
Diff
Raw Normal View History

From 0f0308d28c55c73c25e8a82d198dc1ae26b86652 Mon Sep 17 00:00:00 2001
From: DoctorDark <doctordark11@gmail.com>
Date: Wed, 16 Mar 2016 02:21:39 -0500
Subject: [PATCH] Configurable end credits
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
index 4077f4c28..29cd51f6b 100644
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
@@ -144,4 +144,10 @@ public class PaperWorldConfig {
2019-04-24 02:34:11 +00:00
}
}
}
+
+ public boolean disableEndCredits;
+ private void disableEndCredits() {
+ disableEndCredits = getBoolean("game-mechanics.disable-end-credits", false);
+ log("End credits disabled: " + disableEndCredits);
+ }
}
diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java
index 94021e9b6..eecdade96 100644
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
2019-05-06 02:58:04 +00:00
@@ -60,7 +60,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
2019-04-24 02:34:11 +00:00
private long cm = SystemUtils.getMonotonicMillis();
private Entity spectatedEntity;
2017-05-14 18:05:01 +00:00
public boolean worldChangeInvuln;
2019-04-24 02:34:11 +00:00
- private boolean cp;
+ private boolean cp; private void setHasSeenCredits(boolean has) { this.cp = has; } // Paper - OBFHELPER
private final RecipeBookServer recipeBook;
2019-04-24 02:34:11 +00:00
private Vec3D cr;
private int cs;
@@ -706,6 +706,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
2019-04-24 02:34:11 +00:00
this.getWorldServer().removePlayer(this);
if (!this.viewingCredits) {
this.viewingCredits = true;
2017-05-14 18:05:01 +00:00
+ if (world.paperConfig.disableEndCredits) this.setHasSeenCredits(true); // Paper - Toggle to always disable end credits
2019-04-24 02:34:11 +00:00
this.playerConnection.sendPacket(new PacketPlayOutGameStateChange(4, this.cp ? 0.0F : 1.0F));
this.cp = true;
2017-05-14 18:05:01 +00:00
}
--
2.23.0