diff --git a/src/main/kotlin/dev/hybridlabs/aquatic/entity/cephalopod/CuttlefishEntity.kt b/src/main/kotlin/dev/hybridlabs/aquatic/entity/cephalopod/CuttlefishEntity.kt index 4a2b0987..09386ee2 100644 --- a/src/main/kotlin/dev/hybridlabs/aquatic/entity/cephalopod/CuttlefishEntity.kt +++ b/src/main/kotlin/dev/hybridlabs/aquatic/entity/cephalopod/CuttlefishEntity.kt @@ -28,7 +28,7 @@ class CuttlefishEntity(entityType: EntityType, world: Worl if (this.isSprinting) { sprintCounter++ - if (sprintCounter >= 5) { + if (sprintCounter >= 10) { randomValue = if (randomValue == 3) 4 else 3 sprintCounter = 0 }