From 5bc3853e9def3380ad53943075da278a4fc50fa1 Mon Sep 17 00:00:00 2001 From: Ingo Wiarda Date: Wed, 14 Jan 2015 23:23:14 +0100 Subject: [PATCH] Add flag descriptionContainsHtml, related to #125. --- grails-app/domain/de/dewarim/goblin/quest/QuestStep.groovy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/grails-app/domain/de/dewarim/goblin/quest/QuestStep.groovy b/grails-app/domain/de/dewarim/goblin/quest/QuestStep.groovy index 2f8409b..e7fc94c 100644 --- a/grails-app/domain/de/dewarim/goblin/quest/QuestStep.groovy +++ b/grails-app/domain/de/dewarim/goblin/quest/QuestStep.groovy @@ -21,6 +21,8 @@ class QuestStep { Boolean endOfQuest = false Boolean automaticTransition = false + Boolean descriptionContainsHtml = false + /** * If this QuestStep is the first part of a Quest, set this to true. */ @@ -47,6 +49,7 @@ class QuestStep { if (firstStep != questStep.firstStep) return false if (intro != questStep.intro) return false if (title != questStep.title) return false + if (descriptionContainsHtml != questStep.descriptionContainsHtml) return false return true }