Nothing to see here, just some boring patches and fixes!

This commit is contained in:
TfT_02
2013-01-11 22:31:21 +01:00
parent e6607783e9
commit 6f29e475ee
3 changed files with 156 additions and 0 deletions

View File

@ -10,6 +10,7 @@ import org.getspout.spoutapi.player.SpoutPlayer;
import com.gmail.nossr50.mcMMO;
import com.gmail.nossr50.config.Config;
import com.gmail.nossr50.locale.LocaleLoader;
import com.gmail.nossr50.util.Anniversary;
public class McmmoCommand implements CommandExecutor {
@Override
@ -30,6 +31,8 @@ public class McmmoCommand implements CommandExecutor {
}
sender.sendMessage(ChatColor.YELLOW + "Running version: " + ChatColor.DARK_AQUA + mcMMO.p.getDescription().getVersion());
Anniversary anniversary = new Anniversary();
anniversary.anniversaryCheck(sender);
return true;
}
}