Skip to content

Commit

Permalink
Merge pull request #9 from XiaoJie-150/master
Browse files Browse the repository at this point in the history
修mm5的类型错误
  • Loading branch information
FxRayHughes authored Aug 1, 2024
2 parents da0f3c3 + 66a95c8 commit e27ab33
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package ink.ptms.um.impl5

import ink.ptms.um.*
import ink.ptms.um.Mythic
import ink.ptms.um.Skill
import io.lumine.mythic.api.MythicProvider
import io.lumine.mythic.api.mobs.MythicMob
Expand Down Expand Up @@ -37,7 +37,7 @@ internal class Mythic5 : Mythic {
val api: MythicBukkit
get() = MythicProvider.get() as MythicBukkit

val mmList: HashMap<String, MythicMob> = api.mobManager.getProperty<HashMap<String, MythicMob>>("mmList")!!
val mmList: MutableMap<String, MythicMob> = api.mobManager.getProperty<MutableMap<String, MythicMob>>("mmList")!!

override val isLegacy = false

Expand Down

0 comments on commit e27ab33

Please sign in to comment.