since validate[x](msg) calls validate[x](msg, 0, 0, 0, 0) there is no reason to explicitly use the latter. converted those references to the former in a handful of places.
fixes validateGases(msg) calling validateItems(msg, 0, 0, 0, 0) instead of validateGases(msg, 0, 0, 0, 0). shouldnt impact anything, since validateGases(msg) isnt used in the main mod currently.
makes validateGases call validateCustom for input and output to unify the method used.
changes in this PR:
validate[x](msg)
callsvalidate[x](msg, 0, 0, 0, 0)
there is no reason to explicitly use the latter. converted those references to the former in a handful of places.validateGases(msg)
callingvalidateItems(msg, 0, 0, 0, 0)
instead ofvalidateGases(msg, 0, 0, 0, 0)
. shouldnt impact anything, sincevalidateGases(msg)
isnt used in the main mod currently.validateGases
callvalidateCustom
for input and output to unify the method used.