Skip to content

Commit

Permalink
Merge pull request #4242 from cwisniew/fix-4240
Browse files Browse the repository at this point in the history
Fix for character sheet not being copied with token copy
  • Loading branch information
cwisniew authored Aug 14, 2023
2 parents 2e20a87 + 3dd7871 commit c191de7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/net/rptools/maptool/model/Token.java
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,7 @@ public Token(Token token) {
terrainModifiersIgnored.addAll(token.terrainModifiersIgnored);
speechName = token.speechName != null ? token.speechName : "";
allowURIAccess = token.allowURIAccess;
statSheet = token.statSheet;
}

public Token() {}
Expand Down

0 comments on commit c191de7

Please sign in to comment.