* @param inventoryID The inventory item's ID.
* @param desc The inventory item's new description.
*/
public void setItemDescription(String inventoryID, String desc)
{
Inventory inv = getInvUpdate(inventoryID);
if (inv != null)
{
inv.setDescription(desc);
}
}