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

46 lines
2 KiB
Diff
Raw Normal View History

From 62ad837be8e703d41667e3db844a934f59933484 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 f7a0a33e49..50dec5cb5e 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 26e32aa1db..cd09b207c9 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-12-11 00:56:03 +00:00
private long cj = SystemUtils.getMonotonicMillis();
private Entity spectatedEntity;
2017-05-14 18:05:01 +00:00
public boolean worldChangeInvuln;
2019-12-11 00:56:03 +00:00
- private boolean cm;
+ private boolean cm; private void setHasSeenCredits(boolean has) { this.cm = has; } // Paper - OBFHELPER
private final RecipeBookServer recipeBook;
2019-12-11 00:56:03 +00:00
private Vec3D co;
private int cp;
@@ -695,6 +695,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-12-11 00:56:03 +00:00
this.playerConnection.sendPacket(new PacketPlayOutGameStateChange(4, this.cm ? 0.0F : 1.0F));
this.cm = true;
2017-05-14 18:05:01 +00:00
}
--
2.26.2