Rename and clean up MapleMapManager

This commit is contained in:
P0nk
2021-09-09 22:27:30 +02:00
parent 46842f9890
commit e917980a39
6 changed files with 24 additions and 24 deletions

View File

@@ -3,7 +3,7 @@ package net.server.task;
import net.server.PlayerStorage;
import net.server.Server;
import net.server.channel.Channel;
import server.maps.MapleMapManager;
import server.maps.MapManager;
/**
* @author Resinate
@@ -16,7 +16,7 @@ public class RespawnTask implements Runnable {
PlayerStorage ps = ch.getPlayerStorage();
if (ps != null) {
if (!ps.getAllCharacters().isEmpty()) {
MapleMapManager mapManager = ch.getMapFactory();
MapManager mapManager = ch.getMapFactory();
if (mapManager != null) {
mapManager.updateMaps();
}