Rename MapleMapPortal
This commit is contained in:
@@ -21,8 +21,8 @@
|
|||||||
*/
|
*/
|
||||||
package server.maps;
|
package server.maps;
|
||||||
|
|
||||||
public class MapleMapPortal extends GenericPortal {
|
public class MapPortal extends GenericPortal {
|
||||||
public MapleMapPortal() {
|
public MapPortal() {
|
||||||
super(MaplePortal.MAP_PORTAL);
|
super(MaplePortal.MAP_PORTAL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -36,7 +36,7 @@ public class MaplePortalFactory {
|
|||||||
public MaplePortal makePortal(int type, Data portal) {
|
public MaplePortal makePortal(int type, Data portal) {
|
||||||
GenericPortal ret = null;
|
GenericPortal ret = null;
|
||||||
if (type == MaplePortal.MAP_PORTAL) {
|
if (type == MaplePortal.MAP_PORTAL) {
|
||||||
ret = new MapleMapPortal();
|
ret = new MapPortal();
|
||||||
} else {
|
} else {
|
||||||
ret = new GenericPortal(type);
|
ret = new GenericPortal(type);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user