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

@@ -21,13 +21,13 @@ package com.sheepit.client;
public class Stats {
private int remainingFrame;
private int creditsEarned;
private long creditsEarned;
private int creditsEarnedSession;
private int renderableProject;
private int waitingProject;
private int connectedMachine;
public Stats(int frame, int credits, int creditsSession, int renderables, int waitings, int machines) {
public Stats(int frame, long credits, int creditsSession, int renderables, int waitings, int machines) {
remainingFrame = frame;
creditsEarned = credits;
creditsEarnedSession = creditsSession;
@@ -53,7 +53,7 @@ public class Stats {
return creditsEarnedSession;
}
public int getCreditsEarned() {
public long getCreditsEarned() {
return creditsEarned;
}