diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/EffectListPanel.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/EffectListPanel.kt index bf52f8e4c..d2ff4f235 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/EffectListPanel.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/EffectListPanel.kt @@ -183,7 +183,7 @@ open class EffectListPanel @JvmOverloads constructor( var x = 0 for (panel in sorted) { - panel.setPos(x * 26f, y * 26f) + panel.setPos((gridWidth - x - 1) * 26f, y * 26f) x++