diff options
| author | Ben Culkin <scorpress@gmail.com> | 2022-09-27 19:09:35 -0400 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2022-09-27 19:09:35 -0400 |
| commit | 543869769d420e4dcbf0f2ba84cd8ce245318169 (patch) | |
| tree | fda3cfc8ca408d66eff3ede2ed091d1efbfdad8e /src/main/java/tlIItools/AffixGroup.java | |
| parent | daf1adc30d78b3a690453c0e690251bc6548686e (diff) | |
A few updates
Diffstat (limited to 'src/main/java/tlIItools/AffixGroup.java')
| -rw-r--r-- | src/main/java/tlIItools/AffixGroup.java | 8 |
1 files changed, 8 insertions, 0 deletions
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<AffixGroup> { + /** + * Contains all of the effects in this affix group + */ public List<EffectGroup> effects; /** The types of enchanters who can add this. */ public List<String> enchantSources; @@ -50,6 +53,11 @@ public class AffixGroup implements Comparable<AffixGroup> { 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(); |
