2023-09-26 22:20:12 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: WillQi <williamqipizza@gmail.com>
|
|
|
|
Date: Mon, 15 May 2023 23:45:09 -0600
|
|
|
|
Subject: [PATCH] Fix off region raid heroes
|
|
|
|
|
|
|
|
This patch aims to solve a potential incorrect thread call when completing a raid.
|
|
|
|
If a player is a hero of the village but proceeds to leave the region of the
|
|
|
|
raid before it's completion, it would throw an exception due to not being on the
|
|
|
|
same region thread anymore.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/raid/Raid.java b/src/main/java/net/minecraft/world/entity/raid/Raid.java
|
2024-05-10 01:36:04 +02:00
|
|
|
index 2905dab1f9b3dd846261c5b0777d073927882825..488ff78fd704b8a87b7012c3c4f66814dff97e1b 100644
|
2023-09-26 22:20:12 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/raid/Raid.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/raid/Raid.java
|
2024-05-10 01:36:04 +02:00
|
|
|
@@ -420,14 +420,22 @@ public class Raid {
|
2023-09-26 22:20:12 +02:00
|
|
|
LivingEntity entityliving = (LivingEntity) entity;
|
|
|
|
|
|
|
|
if (!entity.isSpectator()) {
|
|
|
|
- entityliving.addEffect(new MobEffectInstance(MobEffects.HERO_OF_THE_VILLAGE, 48000, this.badOmenLevel - 1, false, false, true));
|
|
|
|
+ //entityliving.addEffect(new MobEffectInstance(MobEffects.HERO_OF_THE_VILLAGE, 48000, this.badOmenLevel - 1, false, false, true)); // Folia - Fix off region raid heroes - move down
|
|
|
|
if (entityliving instanceof ServerPlayer) {
|
|
|
|
ServerPlayer entityplayer = (ServerPlayer) entityliving;
|
|
|
|
|
|
|
|
- entityplayer.awardStat(Stats.RAID_WIN);
|
|
|
|
- CriteriaTriggers.RAID_WIN.trigger(entityplayer);
|
|
|
|
+ // Folia start - Fix off region raid heroes - moved down
|
|
|
|
winners.add(entityplayer.getBukkitEntity()); // CraftBukkit
|
|
|
|
}
|
|
|
|
+ // Folia start - Fix off region raid heroes
|
|
|
|
+ entityliving.getBukkitEntity().taskScheduler.schedule((LivingEntity lv) -> {
|
|
|
|
+ lv.addEffect(new MobEffectInstance(MobEffects.HERO_OF_THE_VILLAGE, 48000, this.badOmenLevel - 1, false, false, true));
|
|
|
|
+ if (lv instanceof ServerPlayer entityplayer) {
|
|
|
|
+ entityplayer.awardStat(Stats.RAID_WIN);
|
|
|
|
+ CriteriaTriggers.RAID_WIN.trigger(entityplayer);
|
|
|
|
+ }
|
|
|
|
+ }, null, 1L);
|
|
|
|
+ // Folia end - Fix off region raid heroes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|