Missing Clans ban cache class (to do with the commit previously by me)
This commit is contained in:
parent
189f9ad524
commit
9d97ea8d1e
@ -0,0 +1,26 @@
|
|||||||
|
package mineplex.game.clans.clans.ban;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stores the data provided through the /cban (Clans ban) command for use further in the plugin.
|
||||||
|
*/
|
||||||
|
public class ClansBanCache
|
||||||
|
{
|
||||||
|
private String _victim;
|
||||||
|
private String _reason;
|
||||||
|
|
||||||
|
public ClansBanCache(String victim, String reason)
|
||||||
|
{
|
||||||
|
_victim = victim;
|
||||||
|
_reason = reason;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getVictim()
|
||||||
|
{
|
||||||
|
return _victim;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getReason()
|
||||||
|
{
|
||||||
|
return _reason;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user