Tighten up shutdown of zoom file processing during reload

This commit is contained in:
Mike Primm 2011-07-27 08:04:53 -05:00
parent c135a669a8
commit df9d3494c3
4 changed files with 23 additions and 3 deletions

View file

@ -45,6 +45,8 @@ public class InternalClientUpdateComponent extends ClientUpdateComponent {
}
protected void webChat(String name, String message) {
if(plugin.mapManager == null)
return;
// TODO: Change null to something meaningful.
plugin.mapManager.pushUpdate(new Client.ChatMessage("web", null, name, message, null));
Log.info(unescapeString(plugin.configuration.getString("webprefix", "\u00A72[WEB] ")) + name + ": " + unescapeString(plugin.configuration.getString("websuffix", "\u00A7f")) + message);