Fix parameter name

This commit is contained in:
Olof Larsson 2014-10-02 16:15:15 +02:00
parent a09ee5f1f4
commit f6ac407a14

View File

@ -255,10 +255,10 @@ public class Faction extends Entity<Faction> implements EconomyParticipator
return Lang.FACTION_NOMOTD;
}
public void setMotd(String motd)
public void setMotd(String description)
{
// Clean input
String target = motd;
String target = description;
if (target != null)
{
target = target.trim();