fix
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1,10 +1,9 @@
|
|||||||
package core.game.interaction;
|
package core.game.interaction;
|
||||||
|
|
||||||
|
import core.game.interaction.city.portsarim.AhabBeerInteraction;
|
||||||
import core.game.node.item.GroundItem;
|
import core.game.node.item.GroundItem;
|
||||||
import core.game.node.item.GroundItemManager;
|
import core.game.node.item.GroundItemManager;
|
||||||
import core.game.world.map.Location;
|
import core.game.world.map.Location;
|
||||||
import rs09.game.interaction.region.falador.WineOfZamorakInteraction;
|
|
||||||
import core.game.interaction.city.portsarim.AhabBeerInteraction;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles interactions for special ground items
|
* Handles interactions for special ground items
|
||||||
@@ -12,8 +11,7 @@ import core.game.interaction.city.portsarim.AhabBeerInteraction;
|
|||||||
*/
|
*/
|
||||||
public enum SpecialGroundItems {
|
public enum SpecialGroundItems {
|
||||||
//Ahab's beer
|
//Ahab's beer
|
||||||
AHAB_BEER(1917,new Location(3049,3257,0), new AhabBeerInteraction()),
|
AHAB_BEER(1917,new Location(3049,3257,0), new AhabBeerInteraction());
|
||||||
WINE_OF_ZAMORAK(245, Location.create(2931, 3515, 0), new WineOfZamorakInteraction());
|
|
||||||
|
|
||||||
private int itemid;
|
private int itemid;
|
||||||
private Location location;
|
private Location location;
|
||||||
|
|||||||
Reference in New Issue
Block a user