浏览代码

Making Spontaneous spell book properly clone-able through Object -> JSON -> Object cloning.

Sam Jaffe 8 年之前
父节点
当前提交
b307f4be6c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/lombok/org/leumasjaffe/charsheet/model/magic/impl/Spontaneous.java

+ 1 - 1
src/main/lombok/org/leumasjaffe/charsheet/model/magic/impl/Spontaneous.java

@@ -19,7 +19,7 @@ import lombok.experimental.NonFinal;
 @AllArgsConstructor @Getter
 @FieldDefaults(level=AccessLevel.PRIVATE, makeFinal=true)
 public class Spontaneous extends DDSpellbook {
-	@AllArgsConstructor
+	@AllArgsConstructor @Getter
 	@FieldDefaults(level=AccessLevel.PRIVATE, makeFinal=true)
 	private static class Level {
 		@NonNull List<DDSpell> spellsKnown;