Fixed misspelled function name

This commit is contained in:
ulteq 2015-04-27 20:20:40 +02:00 committed by PabstMirror
parent 0a27c309cb
commit 7858b65fde

View File

@ -64,7 +64,7 @@ _fnc_cooling = {
};
// Calculate cooling
_temperature = [_temperature, _barrelMass, time - _time] call _fnc_cooldown;
_temperature = [_temperature, _barrelMass, time - _time] call _fnc_cooling;
// Calculate heating
// Steel Heat Capacity = 466 J/(Kg.K)
_temperature = _temperature + _heatIncrement / (_barrelMass * 466);