Rename and clean up MapleStatEffect

This commit is contained in:
P0nk
2021-09-09 22:51:02 +02:00
parent ca4bcd80d1
commit 18e1f6c50b
21 changed files with 225 additions and 231 deletions

View File

@@ -21,7 +21,7 @@
*/
package net.server;
import server.MapleStatEffect;
import server.StatEffect;
/**
*
@@ -29,9 +29,9 @@ import server.MapleStatEffect;
*/
public class PlayerBuffValueHolder {
public int usedTime;
public MapleStatEffect effect;
public StatEffect effect;
public PlayerBuffValueHolder(int usedTime, MapleStatEffect effect) {
public PlayerBuffValueHolder(int usedTime, StatEffect effect) {
this.usedTime = usedTime;
this.effect = effect;
}