Removed custom exception candy

This commit is contained in:
2024-05-12 13:36:47 -04:00
parent 7335946c10
commit 634f1478ce
142 changed files with 181 additions and 327 deletions
+2 -3
View File
@@ -10,7 +10,6 @@
package engine.objects;
import engine.InterestManagement.WorldGrid;
import engine.exception.SerializationException;
import engine.gameManager.*;
import engine.job.JobScheduler;
import engine.jobs.DeferredPowerJob;
@@ -157,11 +156,11 @@ public class Mob extends AbstractIntelligenceAgent implements Delayed {
}
public static void serializeMobForClientMsgOtherPlayer(Mob mob, ByteBufferWriter writer) throws SerializationException {
public static void serializeMobForClientMsgOtherPlayer(Mob mob, ByteBufferWriter writer) {
Mob.serializeForClientMsgOtherPlayer(mob, writer);
}
public static void serializeForClientMsgOtherPlayer(Mob mob, ByteBufferWriter writer) throws SerializationException {
public static void serializeForClientMsgOtherPlayer(Mob mob, ByteBufferWriter writer) {
writer.putInt(0);
writer.putInt(0);