Revert "add slot machine, but currently it is not working"

This reverts commit 4f9cb531c0.
This commit is contained in:
InsanusMokrassar 2020-10-27 14:53:22 +06:00
parent 4f9cb531c0
commit f317e144e6
2 changed files with 0 additions and 8 deletions

View File

@ -2,9 +2,6 @@
## 0.29.2
* `Core`:
* New dice type `SlotMachineDiceAnimationType`
## 0.29.1
* `Common`:

View File

@ -22,10 +22,6 @@ object BasketballDiceAnimationType : DiceAnimationType() {
override val emoji: String = "\uD83C\uDFC0"
}
@Serializable(DiceAnimationTypeSerializer::class)
object SlotMachineDiceAnimationType : DiceAnimationType() {
override val emoji: String = "\uD83C\uDFB0"
}
@Serializable(DiceAnimationTypeSerializer::class)
data class CustomDiceAnimationType(
override val emoji: String
) : DiceAnimationType()
@ -38,7 +34,6 @@ internal object DiceAnimationTypeSerializer : KSerializer<DiceAnimationType> {
CubeDiceAnimationType.emoji -> CubeDiceAnimationType
DartsDiceAnimationType.emoji -> DartsDiceAnimationType
BasketballDiceAnimationType.emoji -> BasketballDiceAnimationType
SlotMachineDiceAnimationType.emoji -> BasketballDiceAnimationType
else -> CustomDiceAnimationType(type)
}
}