You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It makes no sense for an enum class to imply creation semantics when a constant of CHECK exists. The enum is used as more of a request type, to determine how a requested object is processed (currently only implemented for TileEntity lookups in Chunk).
RequestType.IMMEDIATE would imply the requested object will be immediately processed.
RequestType.QUEUED would imply the requested object will be queued for processing.
RequestType.CHECK would imply you're checking for the presence of a requested object.
Uh oh!
There was an error while loading. Please reload this page.
net/minecraft/world/chunk/Chunk$EnumCreateEntityType
->Chunk$RequestType
It makes no sense for an enum class to imply creation semantics when a constant of
CHECK
exists. The enum is used as more of a request type, to determine how a requested object is processed (currently only implemented for TileEntity lookups in Chunk).RequestType.IMMEDIATE
would imply the requested object will be immediately processed.RequestType.QUEUED
would imply the requested object will be queued for processing.RequestType.CHECK
would imply you're checking for the presence of a requested object.See also: #717
The text was updated successfully, but these errors were encountered: