Skip to content

Commit

Permalink
Add flag descriptionContainsHtml, related to #125.
Browse files Browse the repository at this point in the history
  • Loading branch information
dewarim committed Jan 14, 2015
1 parent c250da4 commit 5bc3853
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions grails-app/domain/de/dewarim/goblin/quest/QuestStep.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand All @@ -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
}
Expand Down

0 comments on commit 5bc3853

Please sign in to comment.