From 7a247df3e19881f824f6a5076e2412bdc8f2050c Mon Sep 17 00:00:00 2001 From: Electroblob77 <35599699+Electroblob77@users.noreply.github.com> Date: Mon, 27 Jan 2020 14:33:45 +0000 Subject: [PATCH] Encourage users to report the circular NBT reference error --- src/main/java/electroblob/wizardry/util/NBTExtras.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/electroblob/wizardry/util/NBTExtras.java b/src/main/java/electroblob/wizardry/util/NBTExtras.java index b8bed6bf..eac5464d 100644 --- a/src/main/java/electroblob/wizardry/util/NBTExtras.java +++ b/src/main/java/electroblob/wizardry/util/NBTExtras.java @@ -218,7 +218,7 @@ public final class NBTExtras { public static void storeTagSafely(NBTTagCompound compound, String key, NBTBase tag){ if(compound == tag || deepContains(tag, compound)){ - Wizardry.logger.error("Cannot store tag of type {} under key '{}' as it would result in a circular reference!", + Wizardry.logger.error("Cannot store tag of type {} under key '{}' as it would result in a circular reference! Please report this (including your full log) to wizardry's issue tracker.", NBTBase.getTypeName(tag.getId()), key); }else{ compound.setTag(key, tag);