1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-12 02:02:51 +00:00

Removed object capabilities

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-22 14:55:54 -03:00
parent 3554664367
commit 49a8513ec5
109 changed files with 158 additions and 1569 deletions

View File

@@ -18,15 +18,13 @@ package com.l2jserver.model.world;
import com.l2jserver.model.id.object.CharacterID;
import com.l2jserver.model.id.object.ItemID;
import com.l2jserver.model.world.capability.Summonable;
import com.l2jserver.util.dimensional.Coordinate;
/**
* This class represents an Pet in the Lineage II World
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public class Pet extends Player implements Summonable {
public class Pet extends Player {
/**
* The {@link CharacterID} pet's owner
*/
@@ -36,18 +34,6 @@ public class Pet extends Player implements Summonable {
*/
private ItemID itemID;
@Override
public void summon(Coordinate coordinate) {
// TODO Auto-generated method stub
}
@Override
public boolean isSummoned() {
// TODO Auto-generated method stub
return false;
}
/**
* @return the owner ID
*/