Untested workaround for #2048

This commit is contained in:
PikaMug 2022-12-23 14:15:26 -05:00
parent 354c72ba4a
commit 11a251bbf4
1 changed files with 5 additions and 1 deletions

View File

@ -735,7 +735,8 @@ public class QuestMainPrompt extends QuestsEditorNumericPrompt {
// Check/add newly made item
if (context.getSessionData("tempStack") != null) {
final ItemStack stack = (ItemStack) context.getSessionData("tempStack");
boolean failed = false;
// TODO - Delete this and questGUIError string
/*boolean failed = false;
for (final IQuest quest : plugin.getLoadedQuests()) {
if (quest.getGUIDisplay() != null) {
if (ItemUtil.compareItems(stack, quest.getGUIDisplay(), false) == 0) {
@ -749,6 +750,9 @@ public class QuestMainPrompt extends QuestsEditorNumericPrompt {
}
if (!failed) {
context.setSessionData(CK.Q_GUIDISPLAY, context.getSessionData("tempStack"));
}*/
if (stack != null) {
context.setSessionData(CK.Q_GUIDISPLAY, stack.clone());
}
ItemStackPrompt.clearSessionData(context);
}