Remove effect from the inventory parser.

This commit is contained in:
Thomas Andres Gomez 2023-10-24 14:41:28 +02:00
parent 4123eaeccd
commit f9b3adfee0

View file

@ -49,7 +49,6 @@ class InventoryParser @Inject constructor() {
private const val CONTAINER = "Contenant"
private const val NAME = "Name"
private const val AMOUNT = "Quantité"
private const val THROW = "Effet"
private val COLUMNS = listOf(CONTAINER, NAME, AMOUNT, THROW)
private val COLUMNS = listOf(CONTAINER, NAME, AMOUNT)
}
}