SETTINGS.txt 719 B

123456789101112131415161718192021
  1. -- SETTINGS
  2. ENABLE_WALKERS = true
  3. -- these guys are spawned on land near water, they do not
  4. -- float so they will not attack you if they happen to
  5. -- stumble into the water (L.O.S. limitation*)
  6. ENABLE_FLOATERS = true
  7. -- these guys are spawned in shallow water, they float so they
  8. -- will follow you onto land to take a bite out of you
  9. ENABLE_SWIMMERS = true
  10. -- these guys are spawned in shallow water, they do not float so
  11. -- they will only attack if you attack first (L.O.S. limitation*)
  12. -- * note: Mobs not attacking while underwater is a limitation of
  13. -- the MineTest LineOfSight function used in the "mobs_redo"
  14. -- mod to check if there is anything to attack. Seems that
  15. -- mobs can't see through water.