From 543869769d420e4dcbf0f2ba84cd8ce245318169 Mon Sep 17 00:00:00 2001 From: Ben Culkin Date: Tue, 27 Sep 2022 19:09:35 -0400 Subject: A few updates --- src/main/java/tlIItools/AffixGroup.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/main/java/tlIItools/AffixGroup.java') diff --git a/src/main/java/tlIItools/AffixGroup.java b/src/main/java/tlIItools/AffixGroup.java index 5835614d..9f6bf788 100644 --- a/src/main/java/tlIItools/AffixGroup.java +++ b/src/main/java/tlIItools/AffixGroup.java @@ -12,6 +12,9 @@ import tlIItools.Affix.*; * * @author Ben Culkin */ public class AffixGroup implements Comparable { + /** + * Contains all of the effects in this affix group + */ public List effects; /** The types of enchanters who can add this. */ public List enchantSources; @@ -50,6 +53,11 @@ public class AffixGroup implements Comparable { return afx.toAffixGroup().equals(this); } + /** + * Get a summary of the effects of this group. + * + * @return A string summarizing the effects in this group + */ public String groupSummary() { StringBuilder sb = new StringBuilder(); -- cgit v1.2.3