public static bool HighlightMethod(Item item) { int brown = Composting.GetBrown(item); int green = Composting.GetGreen(item); return(brown > 0 || green > 0); }
public static int Browns(Item item) => item == null ? 0 : Composting.GetBrown(item) * item.Stack;