1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 01:08:59 -09:00

* Suspend - Fixed a bug of counterhandling that could produced wrong amount of counters to add.

This commit is contained in:
LevelX2 2014-09-10 00:19:42 +02:00
parent d2b252b517
commit 92486e0b61

View file

@ -49,7 +49,7 @@ public class Counter implements Serializable {
this.count = count;
}
public Counter(Counter counter) {
public Counter(final Counter counter) {
this.name = counter.name;
this.count = counter.count;
}