CC: Tweaked

CC: Tweaked

42M Downloads

monitors geting frozen when loged out near

badgeminer opened this issue ยท 14 comments

commented

Minecraft Version

1.19.2

Version

1.101.2

Details

logs:

what i did

commented

found on 1.19.2

commented

I'm afraid I've been unable to reproduce this, either when the computer is in spawn chunks (and so remains on during relogging) or not (and so is restarted due to chunks loading/unloading). Does this happen reliably for you?

commented

I'm going to close this as I've been unable to reproduce this. If folks have more information, happy to reopen this again.

commented

MC 1.19.2 / Forge 43.2.14 / CC 1.101.3

Happening to me to. Relogging or leaving the area will freeze the monitor.

It starts working again if you replace the monitor or place a second monitor (resizing it) next to it.

The test-program I used (startup.lua)

m=peripheral.find("monitor")
m.clear()
while true do
  m.setCursorPos(1,1)
  m.write("I")
  sleep(.5)
  m.setCursorPos(1,1)
  m.write("-")
  sleep(.5)
end
commented

Was literally able to reproduce it on a fresh install. Using versions and code from my previous post.
image

Didn't work within the spawn chunks, But outside I just had to teleport 1000 away and right back: Monitor stuck

commented

@SquidDev hope I'm not annoying. But I don't know if closed issues are monitored.

commented

I have the same problem

commented

when teleporting / logging out or leaving the area fast will freeze the monitor

commented

on server

commented

I am consistently able to reproduce this bug on the SwitchCraft 3 server (CC:T 1.108.3 Fabric 1.20.1), but it seems to happen only in certain areas (maybe something to do with too much chunk data?)

  1. Place a computer at or near -919, 69, -122 and place a 4x4 monitor to the right of the computer
  2. On the computer, run this program:
local monitor = peripheral.find("monitor")
local x, y = monitor.getSize()
while true do
    monitor.scroll(1)
    monitor.setCursorPos(1, y)
    monitor.write(os.epoch("utc"))
    sleep(0.85)
end
  1. Log out and rejoin
  2. The monitor becomes frozen
monitor_frozen.mp4

Also, if the monitor is in this state, it can be "warped" by breaking all of its blocks except the bottom left
image
(sorry; I intended to put this reply in #1560 but I had the wrong issue open)

commented

I am also currently having this issue, I didn't have it before but I'm built closer to spawn chunks this time maybe that's it? I'm using artist with an external display and if anyone tp's away or if everyone logs off the monitors are frozen until they are broke and replaced, terribly annoying. If you want a copy of the world or anymore info lmk because I really want to see this bug squashed
1.19.2

commented

I really want to see this bug squashed
1.19.2

This bug was fixed in #1560 using commit 4daa2a2 but at that time 1.19.2 was no longer in development.

commented

So then the fix is included in 1.2x and up?

commented

Ah, yes 1.20.X that's incredibly unfortunate I won't be able to update my server for a good amount of time. Thanks for the reply