Make total user points a long

This commit is contained in:
DaCool
2023-09-09 11:37:12 +00:00
committed by Sheepit Renderfarm
parent 6282fc72e3
commit c09ad34530
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ import org.simpleframework.xml.Root;
@Attribute(name = "credits_session") @Getter private int pointsEarnedOnSession;
@Attribute(name = "credits_total") @Getter private int pointsEarnedByUser;
@Attribute(name = "credits_total") @Getter private long pointsEarnedByUser;
@Attribute(name = "frame_remaining") @Getter private int remainingFrames;