Skip to content

Commit

Permalink
Cleanup in cephalopod class
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticKoko committed Nov 27, 2024
1 parent a05351e commit 9ec0840
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ open class HybridAquaticCephalopodEntity(
world.getBlockState(pos).isOf(Blocks.WATER)
}

fun getScaleAdjustment(jellyfish : HybridAquaticCephalopodEntity, adjustment : Float): Float {
return 1.0f + (jellyfish.size * adjustment)
fun getScaleAdjustment(cephalopod : HybridAquaticCephalopodEntity, adjustment : Float): Float {
return 1.0f + (cephalopod.size * adjustment)
}
}

Expand Down

0 comments on commit 9ec0840

Please sign in to comment.