From ea997239fcaa2cb48ec11bbe8603dea651dcbd55 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Mon, 24 Oct 2022 15:59:06 +0100 Subject: [PATCH] Fix --- .../com/willfp/eco/internal/price/PriceFactoryXPLevels.kt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/eco-core/core-backend/src/main/kotlin/com/willfp/eco/internal/price/PriceFactoryXPLevels.kt b/eco-core/core-backend/src/main/kotlin/com/willfp/eco/internal/price/PriceFactoryXPLevels.kt index 2b04e0ec..8bcfb642 100644 --- a/eco-core/core-backend/src/main/kotlin/com/willfp/eco/internal/price/PriceFactoryXPLevels.kt +++ b/eco-core/core-backend/src/main/kotlin/com/willfp/eco/internal/price/PriceFactoryXPLevels.kt @@ -7,12 +7,10 @@ import kotlin.math.roundToInt object PriceFactoryXPLevels : PriceFactory { override fun getNames() = listOf( - "levels", - "xp levels", - "exp levels", "l", - "xpl", - "expl" + "levels", + "xplevels", + "explevels", ) override fun create(value: Double): Price = PriceXPLevel(value.roundToInt())