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