Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Monitors go blank after being unloaded and reloaded in a chunk #1737

Open
MummyXYZ opened this issue Mar 5, 2024 · 4 comments
Open

Monitors go blank after being unloaded and reloaded in a chunk #1737

MummyXYZ opened this issue Mar 5, 2024 · 4 comments
Labels
area-Minecraft This affects CC's Minecraft-specific content. bug A problem or unexpected behaviour with the mod. cannot reproduce I'm unable to reproduce this bug. help wanted I haven't got the knowledge or time to work on this.

Comments

@MummyXYZ
Copy link

MummyXYZ commented Mar 5, 2024

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
@MummyXYZ MummyXYZ added the bug A problem or unexpected behaviour with the mod. label Mar 5, 2024
@Lupus590
Copy link
Contributor

Lupus590 commented Mar 6, 2024

Maybe related: #1560

@SquidDev SquidDev added the area-Minecraft This affects CC's Minecraft-specific content. label Mar 8, 2024
@SquidDev
Copy link
Member

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?

@MummyXYZ
Copy link
Author

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.

@SquidDev SquidDev added help wanted I haven't got the knowledge or time to work on this. cannot reproduce I'm unable to reproduce this bug. labels Mar 23, 2024
@MummyXYZ
Copy link
Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-Minecraft This affects CC's Minecraft-specific content. bug A problem or unexpected behaviour with the mod. cannot reproduce I'm unable to reproduce this bug. help wanted I haven't got the knowledge or time to work on this.
Projects
None yet
Development

No branches or pull requests

3 participants