Exemplo n.º 1
0
        public static bool HighlightMethod(Item item)
        {
            int brown = Composting.GetBrown(item);
            int green = Composting.GetGreen(item);

            return(brown > 0 || green > 0);
        }
Exemplo n.º 2
0
 public static int Browns(Item item) => item == null ? 0 : Composting.GetBrown(item) * item.Stack;