MB Dev Notes added

This commit is contained in:
2024-04-26 08:21:15 -04:00
parent 2a9463be4e
commit 4b67f97ded
@@ -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<Mob> respawnQueue = new DelayQueue();
@Override