aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/GT_PlayerActivityLogger.java
blob: c6b9cb60d2d15137cd842186fe6265671e5cb540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package gregtech.common;

import gregtech.GT_Mod;
import gregtech.api.util.GT_Log;

import java.util.ArrayList;

public class GT_PlayerActivityLogger implements Runnable {
    @Override
    public void run() {
        try {
            for (; ; ) {
                if (GT_Log.pal == null) {
                    return;
                }
                ArrayList<String> tList = GT_Mod.gregtechproxy.mBufferedPlayerActivity;
                GT_Mod.gregtechproxy.mBufferedPlayerActivity = new ArrayList();
                String tLastOutput = "";
                int i = 0;
                for (int j = tList.size(); i < j; i++) {
                    if (!tLastOutput.equals(tList.get(i))) {
                        GT_Log.pal.println((String) tList.get(i));
                    }
                    tLastOutput = (String) tList.get(i);
                }
                Thread.sleep(10000L);
            }
        } catch (Throwable e) {
        }
    }
}