generated from Astra-Interactive/AstraTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5de0314
commit c1ffcfd
Showing
4 changed files
with
40 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ makeevrserg.java.ktarget=17 | |
# Project | ||
makeevrserg.project.name=AspeKt | ||
makeevrserg.project.group=ru.astrainteractive.aspekt | ||
makeevrserg.project.version.string=2.5.2 | ||
makeevrserg.project.version.string=2.5.3 | ||
makeevrserg.project.description=Essentials plugin for EmpireProjekt | ||
makeevrserg.project.developers=makeevrserg|Makeev Roman|[email protected] | ||
makeevrserg.project.url=https://empireprojekt.ru | ||
|
9 changes: 7 additions & 2 deletions
9
plugin/src/main/kotlin/ru/astrainteractive/aspekt/event/sort/Sort.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
package ru.astrainteractive.aspekt.event.sort | ||
|
||
enum class Sort(var desc: Boolean = false) { | ||
TYPE, NAME, WOOL, GLASS, BLOCK, TOOL | ||
enum class Sort(val desc: Boolean) { | ||
TYPE_ASC(false), TYPE_DESC(true), | ||
NAME_ASC(false), NAME_DESC(true), | ||
WOOL_ASC(false), WOOL_DESC(true), | ||
GLASS_ASC(false), GLASS_DESC(true), | ||
BLOCK_ASC(false), BLOCK_DESC(true), | ||
TOOL_ASC(false), TOOLS_DESC(true); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters