if(!Reactants.isKnown(reactantName)) {
BRLog.warning("Read an unknown reactant <%s> from a network message; tank %s will remain empty", reactantName, tankNames[i]);
}
else {
tanks[i] = new ReactantStack(reactantName, amount);
levelAtLastUpdate[i] = amount;
}
}
}
}