mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-03 04:16:19 -04:00
Fixed buff error on relog
This commit is contained in:
@@ -122,7 +122,7 @@ public class BuffService implements INetworkDispatch {
|
||||
|
||||
for(final Buff buff : creature.getBuffList().get().toArray(new Buff[] { })) {
|
||||
|
||||
if(buff.getRemainingDuration() > 0) {
|
||||
if(buff.getRemainingDuration() > 0 && buff.getDuration() > 0) {
|
||||
scheduler.schedule(new Runnable() {
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user