package com.massivecraft.factions.cmd; import com.massivecraft.factions.entity.MPerm; import com.massivecraft.factions.entity.MPlayer; import com.massivecraft.factions.event.EventFactionsMotdChange; import com.massivecraft.massivecore.MassiveException; import com.massivecraft.massivecore.command.type.TypeNullable; import com.massivecraft.massivecore.command.type.primitive.TypeString; import com.massivecraft.massivecore.mixin.MixinDisplayName; import com.massivecraft.massivecore.util.MUtil; import com.massivecraft.massivecore.util.Txt; public class CmdFactionsMotd extends FactionsCommand { // -------------------------------------------- // // CONSTRUCT // -------------------------------------------- // public CmdFactionsMotd() { // Parameters this.addParameter(TypeNullable.get(TypeString.get()), "new", "read", true); } // -------------------------------------------- // // OVERRIDE // -------------------------------------------- // @Override public void perform() throws MassiveException { // Read if (!this.argIsSet(0)) { message(msenderFaction.getMotdMessages()); return; } // MPerm if (!MPerm.getPermMotd().has(msender, msenderFaction, true)) return; // Args String target = this.readArg(); target = target.trim(); target = Txt.parse(target); // Get Old String old = msenderFaction.getMotd(); // NoChange if (MUtil.equals(old, target)) { msg("The motd for %s is already: %s", msenderFaction.describeTo(msender, true), msenderFaction.getMotdDesc()); return; } // Event EventFactionsMotdChange event = new EventFactionsMotdChange(sender, msenderFaction, target); event.run(); if (event.isCancelled()) return; target = event.getNewMotd(); // Apply msenderFaction.setMotd(target); // Inform for (MPlayer follower : msenderFaction.getMPlayers()) { follower.msg("%s changed your faction motd.", MixinDisplayName.get().getDisplayName(sender, follower)); follower.message(msenderFaction.getMotdMessages()); } } }