Skip to content

Commit 4957ba5

Browse files
Make variables private
1 parent d4a8dbc commit 4957ba5

File tree

1 file changed

+3
-3
lines changed
  • src/main/java/dev/enderman/minecraft/plugins/scp/items

1 file changed

+3
-3
lines changed

src/main/java/dev/enderman/minecraft/plugins/scp/items/SCP268Item.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import org.bukkit.event.entity.EntityTargetLivingEntityEvent
1313
import org.bukkit.potion.PotionEffect
1414
import org.bukkit.potion.PotionEffectType
1515

16-
val unaffectedEntities = listOfNotNull(
16+
private val unaffectedEntities = listOfNotNull(
1717
EntityType.WARDEN,
1818
EntityType.ENDERMAN,
1919
EntityType.GUARDIAN,
@@ -25,14 +25,14 @@ val unaffectedEntities = listOfNotNull(
2525
*
2626
* However, they won't be able to notice a player if they haven't noticed them already.
2727
*/
28-
val lessAffectedEntities = listOfNotNull(
28+
private val lessAffectedEntities = listOfNotNull(
2929
EntityType.SHULKER
3030
)
3131

3232
/**
3333
* These entities have methods of sensing the player other than sight, meaning SCP-268 might confuse them and disorient them, but ultimately they still might be able to sense the player through their other means.
3434
*/
35-
val confusedEntities = listOfNotNull(
35+
private val confusedEntities = listOfNotNull(
3636
EntityType.ZOMBIE,
3737
EntityType.IRON_GOLEM,
3838
EntityType.ZOMBIFIED_PIGLIN

0 commit comments

Comments
 (0)