Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
LEVEL_3
is 1 - 3 (e.g. non-empty cauldrons), so a constant field of zero won't be its minimum.LEVEL_8
is 0 - 8 (e.g. composters), and is just after, sofield_31387
is more likely to be for that.It does leave
field_31388
immediately underneath in a slightly awkward position, as it's a constant of one, so could either beLEVEL_1_8_MIN
(as it is now) orLEVEL_3_MIN
(to matchfield_31389
immediate after it).I suppose
field_31390
is in a similar position being a constant of eight, it could beLEVEL_1_8_MAX
(as it is now) orLEVEL_8_MAX
(to correspond toLEVEL_8_MIN
).