Skip to content
This repository was archived by the owner on Mar 22, 2026. It is now read-only.

Commit d99e6a5

Browse files
committed
修复不查看其它玩家模型的选项
1 parent 6fc232e commit d99e6a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mod/src/client/kotlin/top/fifthlight/armorstand/state/ModelInstanceManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ object ModelInstanceManager {
137137
@OptIn(ExperimentalCoroutinesApi::class)
138138
fun get(uuid: UUID, time: Long?, load: Boolean = true): ModelInstanceItem? {
139139
val isSelf = uuid == selfUuid
140-
if (isSelf && !ConfigHolder.config.value.showOtherPlayerModel) {
140+
if (!isSelf && !ConfigHolder.config.value.showOtherPlayerModel) {
141141
return null
142142
}
143143

0 commit comments

Comments
 (0)