2017-03-31 01:26:00 +02:00
|
|
|
From d40440cebea4465e17477fd5e9fbbdc815a06c4a Mon Sep 17 00:00:00 2001
|
2016-03-16 08:21:39 +01:00
|
|
|
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
|
2017-03-25 04:18:58 +01:00
|
|
|
index fd606ee14..c00fa83d5 100644
|
2016-03-16 08:21:39 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2017-03-25 04:18:58 +01:00
|
|
|
@@ -149,4 +149,10 @@ public class PaperWorldConfig {
|
2016-03-25 07:38:38 +01:00
|
|
|
queueLightUpdates = getBoolean("queue-light-updates", false);
|
|
|
|
log("Lighting Queue enabled: " + queueLightUpdates);
|
2016-03-16 08:21:39 +01: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
|
2017-03-31 01:26:00 +02:00
|
|
|
index 4b9e83161..7c8c61ee8 100644
|
2016-03-16 08:21:39 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2017-01-14 09:11:12 +01:00
|
|
|
@@ -513,6 +513,15 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2016-03-16 08:21:39 +01:00
|
|
|
return this.world.pvpMode;
|
|
|
|
}
|
|
|
|
|
2016-05-12 04:07:46 +02:00
|
|
|
+
|
|
|
|
+ // Paper start - Give "theEnd2" achievement if the player doesn't already have it
|
2016-03-16 08:21:39 +01:00
|
|
|
+ private void giveTheEnd2() {
|
|
|
|
+ if (!this.a(AchievementList.D)) {
|
|
|
|
+ this.b(AchievementList.D);
|
|
|
|
+ }
|
|
|
|
+ }
|
2016-05-12 04:07:46 +02:00
|
|
|
+ // Paper end
|
2016-03-16 08:21:39 +01:00
|
|
|
+
|
2016-05-12 04:07:46 +02:00
|
|
|
@Nullable
|
2016-03-16 08:21:39 +01:00
|
|
|
public Entity c(int i) {
|
2017-03-31 01:26:00 +02:00
|
|
|
if (this.isSleeping()) return this; // CraftBukkit - SPIGOT-3154
|
|
|
|
@@ -522,7 +531,10 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2016-03-16 08:21:39 +01:00
|
|
|
this.world.kill(this);
|
|
|
|
if (!this.viewingCredits) {
|
|
|
|
this.viewingCredits = true;
|
|
|
|
- if (this.a(AchievementList.D)) {
|
|
|
|
+ // Paper start - Allow configurable end portal credits
|
|
|
|
+ if (world.paperConfig.disableEndCredits || this.a(AchievementList.D)) {
|
|
|
|
+ this.giveTheEnd2();
|
|
|
|
+ // Paper end
|
|
|
|
this.playerConnection.sendPacket(new PacketPlayOutGameStateChange(4, 0.0F));
|
|
|
|
} else {
|
|
|
|
this.b((Statistic) AchievementList.D);
|
|
|
|
--
|
2017-03-31 01:26:00 +02:00
|
|
|
2.12.1.windows.1
|
2016-03-16 08:21:39 +01:00
|
|
|
|