VolmitSoftware / React

Smart Server Performance
https://volmit.com
GNU General Public License v3.0
95 stars 52 forks source link

Item Frames not culling #439

Closed fyrmftw closed 6 years ago

fyrmftw commented 6 years ago

https://github.com/VolmitSoftware/React/issues/430

I'm using fresh config, latest react plugin and made sure Item frame is in the culling list, and it's still not being able to cull item frames, it works with mobs, minecarts, paintings etc, but still not the item frames.

In the image below, I placed over 30+ Paintings and itemframes and only the paintings got removed, i've tried a force cull on entities and itemframes specifically and nothing.

image

cyberpwnn commented 6 years ago

This might be hard coded. Ill add an option to disable item frame prevention.

cyberpwnn commented 6 years ago

Added two options (Implemented in 6.572)

features:
  react:
    saftey:

      # Treats itemframes as dangerous, and prevents react from killing them, or
      # culling them. Set this to false to allow culling them with rules, or purging
      # them.
      treat-itemframes-dangerous: true

      # Treats armorstands as dangerous, and prevents react from killing them, or
      # culling them. Set this to false to allow culling them with rules, or purging
      # them.
      treat-armorstands-dangerous: true
fyrmftw commented 6 years ago

Thank you, it culls now <3