소스 검색

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;