mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-18 03:44:54 -04:00
fix some wrong comments and some bugs
This commit is contained in:
parent
cb9bf79f3c
commit
bda742f7f4
@ -137,11 +137,11 @@ class GLFWWindow(
|
|||||||
// So you found that option...
|
// So you found that option...
|
||||||
// Good search, maybe I should hide it a bit more
|
// Good search, maybe I should hide it a bit more
|
||||||
// about v*s*y*n*c: Why the hell would you want to disable it?
|
// about v*s*y*n*c: Why the hell would you want to disable it?
|
||||||
// it makes no sense, you are always 50ms behind, because of position interpolating
|
// it makes no sense, you are always 50ms behind, because of position interpolation
|
||||||
// same applied to minecraft
|
// same applied to minecraft
|
||||||
// more fps? flexing? enable exper*imental f|p|s.
|
// want more fps? flexing? enable exper*imental f|p|s.
|
||||||
// to benchmark, yes. understandable. search in the config and set it to 0
|
// want to benchmark, yes. understandable. search in the config and set it to 0
|
||||||
// to compare with minecraft? not needed.
|
// if you want to compare this with minecraft? not needed.
|
||||||
glfwSwapInterval(value)
|
glfwSwapInterval(value)
|
||||||
field = value
|
field = value
|
||||||
}
|
}
|
||||||
|
@ -518,7 +518,7 @@ class WorldRenderer(
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (queueSet.remove(item)) {
|
if (queueSet.remove(item)) {
|
||||||
queueSet.remove(item)
|
queue.remove(item)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (meshesToLoadSet.remove(item)) {
|
if (meshesToLoadSet.remove(item)) {
|
||||||
|
@ -26,7 +26,7 @@ import de.bixilon.minosoft.util.logging.LogLevels
|
|||||||
import de.bixilon.minosoft.util.logging.LogMessageType
|
import de.bixilon.minosoft.util.logging.LogMessageType
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
@LoadPacket
|
@LoadPacket(lowPriority = true)
|
||||||
class ChunksS2CP : PlayS2CPacket {
|
class ChunksS2CP : PlayS2CPacket {
|
||||||
val data: MutableMap<Vec2i, ChunkData?> = mutableMapOf()
|
val data: MutableMap<Vec2i, ChunkData?> = mutableMapOf()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user