From f05adb95daa804dac14fb0d5235694b90dc3b83e Mon Sep 17 00:00:00 2001 From: SilvDev Date: Sun, 16 Feb 2014 20:14:44 +0000 Subject: [PATCH] Update cargocheck.sqf Proposal to change TitleText to the more commonly used cutText to prevent text overlapping. --- SQF/dayz_code/actions/cargocheck.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/actions/cargocheck.sqf b/SQF/dayz_code/actions/cargocheck.sqf index 6a0fa4d78..f9d47ff54 100644 --- a/SQF/dayz_code/actions/cargocheck.sqf +++ b/SQF/dayz_code/actions/cargocheck.sqf @@ -30,4 +30,4 @@ _weaponsCount = (_weaponsCount_raw select 1) call vehicle_gear_count; // Count and show weapons available space _backpackCount = (_backpackCount_raw select 1) call vehicle_gear_count; -TitleText [format[(localize "str_epoch_player_1"),_magazineCount,_maxMagazines,_weaponsCount,_maxWeapons,_backpackCount,_maxBackpacks], "PLAIN DOWN"]; \ No newline at end of file +cutText [format[(localize "str_epoch_player_1"),_magazineCount,_maxMagazines,_weaponsCount,_maxWeapons,_backpackCount,_maxBackpacks], "PLAIN DOWN"];