add warning about crossplay + stack limits

This commit is contained in:
Martin Michelsen
2025-08-07 00:00:25 -07:00
parent a9dcd4b87e
commit 5bea9d3a2b
+14 -7
View File
@@ -673,14 +673,21 @@
], ],
// Item stack limits. Note that changing these does not affect the client's // Item stack limits. Note that changing these does not affect the client's
// behavior automatically - this only exists to allow the server to understand // behavior automatically - this only exists to allow the server to
// the behavior of clients that are already patched with different stack // understand the behavior of clients that are already patched with different
// limits. If you want to use an unpatched BB client but still have custom // stack limits.
// stack limits, you can use the StackLimits runtime patch by editing // If you want to use an unpatched BB client but still have custom stack
// limits, you can use the StackLimits runtime patch by editing
// system/client-functions/BlueBurstExclusive/StackLimits.59NL.patch.s to // system/client-functions/BlueBurstExclusive/StackLimits.59NL.patch.s to
// match the BB stack limits and adding "StackLimits" to the BBRequiredPatches // match the BB stack limits and adding "StackLimits" to the
// list. The ToolLimits list is indexed by data1[1] (that is, the second byte // BBRequiredPatches list.
// of the item data); for items beyond the end of the list, the last entry's // It's important that all players in the same game have the same stack
// limits, both on the client and server! So, if you change the BB stack
// limits, you must either prevent BB from playing with other versions (see
// CompatibilityGroups) or write an analogous patch for all other versions
// and add it to AutoPatches.
// The ToolLimits list is indexed by data1[1] (that is, the second byte of
// the item data); for items beyond the end of the list, the last entry's
// value is used. // value is used.
"ItemStackLimits": [ "ItemStackLimits": [
{"MesetaLimit": 999999, "ToolLimits": [10]}, // DC NTE {"MesetaLimit": 999999, "ToolLimits": [10]}, // DC NTE