Try to add this at your olympiad.java
if (_game._playerOneIp.equals(_game._playerTwoIp) && !Config.ALT_OLY_SAME_IP)
{
_log.warn("Match from same ip " + _game._playerOneName + " vs " + _game._playerTwoName);
_sm = new SystemMessage(SystemMessageId.THE_GAME_ENDED_IN_A_TIE);
broadcastMessage(_sm, true);
try
{
_game._playerOne.sendMessage("Match suspected of Illegal Violation: GM informed");
_game._playerTwo.sendMessage("Match suspected of Illegal Violation: GM informed");
}
catch (Exception e)
{
_log.error(e.getMessage(), e);
}
}
and at your config add these 2
public static boolean ALT_OLY_SAME_IP; // Olympiad allow Matches from same Ip
ALT_OLY_SAME_IP = Boolean.parseBoolean(altSettings.getProperty("AltOlySameIp", "true"));