From 7bc522619c7281580a8ace3ddcb48a14ac5b5567 Mon Sep 17 00:00:00 2001 From: Major- Date: Sun, 9 Mar 2014 09:49:29 +0000 Subject: [PATCH] Clarify parameter names in item on object event. --- src/org/apollo/game/event/impl/ItemOnObjectEvent.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/org/apollo/game/event/impl/ItemOnObjectEvent.java b/src/org/apollo/game/event/impl/ItemOnObjectEvent.java index 8911703c..23ea81c1 100644 --- a/src/org/apollo/game/event/impl/ItemOnObjectEvent.java +++ b/src/org/apollo/game/event/impl/ItemOnObjectEvent.java @@ -24,14 +24,14 @@ public final class ItemOnObjectEvent extends InventoryItemEvent { * Creates an item on object event. * * @param interfaceId The interface id. - * @param id The item id. - * @param slot The slot the item is in. + * @param itemId The item id. + * @param itemSlot The slot the item is in. * @param objectId The object id. * @param x The x coordinate. * @param y The y coordinate. */ - public ItemOnObjectEvent(int interfaceId, int id, int slot, int objectId, int x, int y) { - super(0, interfaceId, id, slot); + public ItemOnObjectEvent(int interfaceId, int itemId, int itemSlot, int objectId, int x, int y) { + super(0, interfaceId, itemId, itemSlot); this.objectId = objectId; this.position = new Position(x, y); }