Commits
md_5 authored 9d85e3f4753
331 331 | |
332 332 | /** |
333 333 | * Gets the inventory with the equipment worn by the living entity. |
334 334 | * |
335 335 | * @return the living entity's inventory |
336 336 | */ |
337 337 | public EntityEquipment getEquipment(); |
338 338 | |
339 339 | /** |
340 340 | * Sets whether or not the living entity can pick up items. |
341 + | * <p> |
342 + | * This method has no effect on a {@link HumanEntity}. |
341 343 | * |
342 344 | * @param pickup whether or not the living entity can pick up items |
343 345 | */ |
344 346 | public void setCanPickupItems(boolean pickup); |
345 347 | |
346 348 | /** |
347 349 | * Gets if the living entity can pick up items. |
348 350 | * |
349 351 | * @return whether or not the living entity can pick up items |
350 352 | */ |