CC: Tweaked

CC: Tweaked

42M Downloads

Monitors go blank after being unloaded and reloaded in a chunk

MummyXYZ opened this issue ยท 4 comments

commented

Minecraft Version

1.20.x

Version

1.109.5

Details

Any type of display as well as any size once unloaded from a chunk or the game closes is not displaying anything after reloading the chunk or opening the game again.

The mod pack is TNP Limitless 7.

If any other information needs to be provided or troubleshooting needs to be done on my end please let me know.

Lastest.log file
https://gist.github.com/MummyXYZ/e6fe283be53b2305f76790acfe1e0e0e#file-latest-log

A short clip of what happens.
https://medal.tv/games/minecraft/clips/1ZeB3ijn-I2Aoo/d1337MBTQ55A?invite=cr-MSxjU0wsMjIwNzY1ODc1LA

Code being ran

m = peripheral.wrap("back")
m.clear()

m.setTextScale(2.5)

m.setTextColour(colors.orange)
m.setCursorPos(1,3)
m.write("To The Bees")

Edit 1:
After help from Wojbie on discord.

The monitors are not being redrawn once loaded back into a chunk the below solved the issue for what I am needing it for.

m = peripheral.wrap("back")
m.clear()

while true do
m.setTextScale(2.5)

m.setTextColour(colors.orange)
m.setCursorPos(1,3)
m.write("To The Bees")
sleep(1)
end
commented

Maybe related: #1560

commented

We made a couple of changes to monitors in the last couple of versions. Would you be able to update to 1.110.0 and see if that resolves this issue?

commented

Installed 1.110.1.
Repeated the same steps before by leaving area by teleporting and coming back and flying and coming back with no success. Lmk if you would like me to try anything else.

commented

I can host my world for a bit or upload it or w/e else might help.