1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-08 08:23:11 +00:00

Several changes

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-18 02:18:37 -03:00
parent cd41122035
commit 4c27add4ef
162 changed files with 492 additions and 579 deletions

View File

@@ -26,9 +26,16 @@ import com.l2jserver.model.world.Item;
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public abstract class RecipeTemplate extends ItemTemplate {
private ItemTemplateID item;
protected ItemTemplateID item;
public RecipeTemplate(ItemTemplateID id) {
super(id);
}
/**
* @return the item
*/
public ItemTemplateID getItem() {
return item;
}
}