2024-06-13 19:12:48 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
|
|
|
|
|
|
|
|
2024-08-14 21:26:38 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/EndPortalBlock.java b/src/main/java/net/minecraft/world/level/block/EndPortalBlock.java
|
2024-10-22 20:04:31 +02:00
|
|
|
index 8bea909328bc15eb6af739850db13d624270dee4..5744944455b08d45a7c0fe2289414b50b6c0d66a 100644
|
2024-08-14 21:26:38 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/block/EndPortalBlock.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/block/EndPortalBlock.java
|
2024-10-22 20:04:31 +02:00
|
|
|
@@ -76,6 +76,7 @@ public class EndPortalBlock extends BaseEntityBlock implements Portal {
|
2024-08-14 21:26:38 +02:00
|
|
|
if (!world.isClientSide && world.dimension() == Level.END && entity instanceof ServerPlayer) {
|
|
|
|
ServerPlayer entityplayer = (ServerPlayer) entity;
|
|
|
|
|
|
|
|
+ if (world.paperConfig().misc.disableEndCredits) entityplayer.seenCredits = true; // Paper - Option to disable end credits
|
|
|
|
if (!entityplayer.seenCredits) {
|
|
|
|
entityplayer.showEndCredits();
|
|
|
|
return;
|