Skip to content

Commit

Permalink
Fix IVs not showing in patient display (#5230)
Browse files Browse the repository at this point in the history
Fix #5192 for 3.10
  • Loading branch information
PabstMirror authored Jun 1, 2017
1 parent fea2326 commit 7bccf2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/medical/functions/fnc_displayPatientInformation.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ if (_show) then {
};

private _totalIvVolume = 0;
private _bloodBags = _unit getVariable [QGVAR(ivBags), []];
private _bloodBags = _target getVariable [QGVAR(ivBags), []];
{
_x params ["_bagVolumeRemaining"];
_totalIvVolume = _totalIvVolume + _bagVolumeRemaining;
Expand Down

0 comments on commit 7bccf2f

Please sign in to comment.