diff --git a/src/engine/mobileAI/Threads/Respawner.java b/src/engine/mobileAI/Threads/Respawner.java index b5471c8a..73ca78f8 100644 --- a/src/engine/mobileAI/Threads/Respawner.java +++ b/src/engine/mobileAI/Threads/Respawner.java @@ -16,7 +16,15 @@ import java.util.concurrent.BlockingQueue; import java.util.concurrent.DelayQueue; public enum Respawner implements Runnable { + + // MB Dev Notes: + // + // Thread acts as a throttle for messages to the client. Mobiles are + // respawned over a short time so as not to flood the client when + // an entire camp respawns at once. + RESPAWNER; + public static BlockingQueue respawnQueue = new DelayQueue(); @Override