mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-07-08 23:07:46 +07:00
Added additional debug logging for CharData item management calls
This commit is contained in:
@ -381,14 +381,17 @@ public class CharData implements ItemData.UpdateListener, Pool.Poolable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void groundToCursor(Item item) {
|
public void groundToCursor(Item item) {
|
||||||
|
if (DEBUG_ITEMS) Gdx.app.log(TAG, "groundToCursor " + item);
|
||||||
itemData.pickup(item);
|
itemData.pickup(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void cursorToGround() {
|
public void cursorToGround() {
|
||||||
|
if (DEBUG_ITEMS) Gdx.app.log(TAG, "cursorToGround");
|
||||||
itemData.drop();
|
itemData.drop();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void itemToCursor(int i) {
|
public void itemToCursor(int i) {
|
||||||
|
if (DEBUG_ITEMS) Gdx.app.log(TAG, "itemToCursor " + i);
|
||||||
itemData.pickup(i);
|
itemData.pickup(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user