From ecebe75f333eff0f60d1afa15ea10c97dcde4fc7 Mon Sep 17 00:00:00 2001 From: AEon - Tobias Date: Wed, 8 Aug 2018 02:51:46 +0200 Subject: [PATCH] Third stage of "Dagger of Sacrifice"-glow (#1389) * Added Soul Fray check. Sacrificial dagger now glows even more if you're fully prepared! Added NBT field for maximum incense altar bonus from the last incense altar the player has encountered. (There is a case in which the dagger glows even if the player is not at maximum incense bonus: The player must have been at maximum incense bonus and then gone into the vincinity of a stronger incense altar. The maximum incense bonus data field only updates once the maximum bonus has been reached for efficiency.) * Multiplayer fixed. * Fixed weirdness that occurred during a phase I don't remember. --- .../item/ItemSacrificialDagger.java | 30 +++++++++++++------ .../WayofTime/bloodmagic/util/Constants.java | 2 ++ .../bloodmagic/util/helper/IncenseHelper.java | 24 +++++++++++++++ .../util/helper/PlayerSacrificeHelper.java | 5 +++- 4 files changed, 51 insertions(+), 10 deletions(-) diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java b/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java index 6dc81125..5410758f 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java @@ -8,10 +8,7 @@ import WayofTime.bloodmagic.item.types.ISubItem; import WayofTime.bloodmagic.tile.TileAltar; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.DamageSourceBloodMagic; -import WayofTime.bloodmagic.util.helper.NBTHelper; -import WayofTime.bloodmagic.util.helper.PlayerHelper; -import WayofTime.bloodmagic.util.helper.PlayerSacrificeHelper; -import WayofTime.bloodmagic.util.helper.TextHelper; +import WayofTime.bloodmagic.util.helper.*; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.client.util.ITooltipFlag; @@ -56,7 +53,8 @@ public class ItemSacrificialDagger extends ItemEnum