Rename MapleMapPortal

This commit is contained in:
P0nk
2021-09-09 22:31:36 +02:00
parent fa8222d9a0
commit efb1cb0632
2 changed files with 3 additions and 3 deletions

View File

@@ -21,8 +21,8 @@
*/
package server.maps;
public class MapleMapPortal extends GenericPortal {
public MapleMapPortal() {
public class MapPortal extends GenericPortal {
public MapPortal() {
super(MaplePortal.MAP_PORTAL);
}
}

View File

@@ -36,7 +36,7 @@ public class MaplePortalFactory {
public MaplePortal makePortal(int type, Data portal) {
GenericPortal ret = null;
if (type == MaplePortal.MAP_PORTAL) {
ret = new MapleMapPortal();
ret = new MapPortal();
} else {
ret = new GenericPortal(type);
}