Minecraft Version
1.18.x
Version
1.100.10
Details
There is currently a bug introduced by e16f66e where rednet.receive receives the message wrapper for modem packets when the receiver is the local computer and the short circuit is triggered:
|
if recipient == os.getComputerID() then |
|
-- Loopback to ourselves |
|
os.queueEvent("rednet_message", os.getComputerID(), message_wrapper, protocol) |
|
sent = true |
Instead of message_wrapper message should be passed instead (like it used to).
Minecraft Version
1.18.x
Version
1.100.10
Details
There is currently a bug introduced by e16f66e where
rednet.receivereceives the message wrapper for modem packets when the receiver is the local computer and the short circuit is triggered:CC-Tweaked/projects/core/src/main/resources/data/computercraft/lua/rom/apis/rednet.lua
Lines 194 to 197 in da7a503
Instead of
message_wrappermessageshould be passed instead (like it used to).