MCPcopy Create free account
hub / github.com/smallfawn/QLScriptPublic / isGrowing

Function isGrowing

wxapp/junpinhui.js:166–169  ·  view source on GitHub ↗
(item = {})

Source from the content-addressed store, hash-verified

164}
165
166function isGrowing(item = {}) {
167 const status = landStatus(item);
168 return pickId(item) && status > 0 && ![10, 11].includes(status);
169}
170
171function isHarvestable(item = {}) {
172 return pickId(item) && [10, 11].includes(landStatus(item));

Callers

nothing calls this directly

Calls 2

landStatusFunction · 0.85
pickIdFunction · 0.85

Tested by

no test coverage detected