Skip to content
This repository was archived by the owner on Jul 1, 2018. It is now read-only.

Packets

SquidDev edited this page Jan 24, 2017 · 1 revision

CCTweaks provides some optimisations to ComputerCraft's packets, limiting who data is sent to. However, due to their implementation, mods which add their own computers may not function correctly. If you encounter this issue, file a bug on the issue tracker and I should be able to resolve it.

  • Packets.requireContainer=true: This requires a player to be registered as interacting with a computer in order to accept input from them. As mentioned above, mods which provide a custom computer may not register their GUI as a computer and so will not function correctly. If you find such a mod, please report it to me.
  • Packets.updateLimiting=true: Only send computer updates (whether the computer is on or blinking) to those within render distance. This helps reduce network traffic though the may cause issues. Again, please report if you find such issues.
  • Packets.terminalLimiting=true: Only send terminal updates to those interacting with the computer. This significantly reduces network usage but will not work with mods which do not register the custom computer.

Clone this wiki locally