Make total user points a long
This commit is contained in:
committed by
Sheepit Renderfarm
parent
6282fc72e3
commit
c09ad34530
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user