We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 648e6ed commit 198be49Copy full SHA for 198be49
src/main/kotlin/gg/skytils/skytilsmod/mixins/hooks/entity/EntityLivingBaseHook.kt
@@ -48,9 +48,7 @@ class EntityLivingBaseHook(val entity: EntityLivingBase) {
48
}
49
50
val isSmol by lazy {
51
- Utils.inSkyblock && entity is EntityPlayer && (
52
- (entity is EntityPlayerSP && SuperSecretSettings.smolMe) ||
53
- (SuperSecretSettings.smolPeople && entity.uniqueID.version() == 4) || isBreefing)
+ Utils.inSkyblock && entity is EntityPlayer && ((entity is EntityPlayerSP && SuperSecretSettings.smolMe) || (SuperSecretSettings.smolPeople && entity.uniqueID.version() == 4) || isBreefing)
54
55
56
fun modifyPotionActive(potionId: Int, cir: CallbackInfoReturnable<Boolean>) {
0 commit comments