Mineplex/GOD DAMN COSMETICS/bonuses/redis/VotifierCommand.java
Daniel Waggner 38a20f98c2 Removed Files
These two directories contain code that was removed from the src and dependencies of the compiled files. They were removed due to being either a. unnecessary or b. a royal pain in my booty.
2021-05-23 18:13:37 -07:00

34 lines
619 B
Java

package mineplex.core.bonuses.redis;
import mineplex.serverdata.commands.ServerCommand;
public class VotifierCommand extends ServerCommand
{
private String _playerName;
private int _rewardReceived;
private boolean _clans;
public VotifierCommand(String playerName, int rewardReceived, boolean clans, String... targetServer)
{
super(targetServer);
_playerName = playerName;
_rewardReceived = rewardReceived;
_clans = clans;
}
public String getPlayerName()
{
return _playerName;
}
public int getRewardReceived()
{
return _rewardReceived;
}
public boolean isClans()
{
return _clans;
}
}