Skip to content

Commit 7484afe

Browse files
committedJun 21, 2018
[FIX] Minor misleading text improvements
1 parent c4a946b commit 7484afe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎INVactions.sqf

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if ((_action == "use") and (INV_CanUseItem)) then {
2020
};
2121

2222
if ((time_bank_lockout > time) && (_item call INV_getitemKindOf == "dollarz")) then {
23-
hintSilent "You are cannot drop/give money while in bank lockout";
23+
hintSilent "You are cannot drop/give money while in bank / casino lockout";
2424
} else {
2525
if ((_action == "drop") and (INV_CanDropItem)) then { [_item, _amount] execVM "drop.sqf"; };
2626
if ((_action == "give") and (INV_CanGiveItem)) then { ["uebergabe", _item, _amount, _plyer] execVM "give.sqf"; };

‎casrob.sqf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if (_art == "robcas") then {
66
_robpool = robsafes select 1;
77
if ((playersNumber west) < 3)exitWith{hintSilent "There are not enough cops on to rob this safe"};
88
if(_robpool < 15000)exitWith{hintSilent "This safe has recently been stolen from and is empty"};
9-
if(!robenable)exitwith{hintSilent "you are already robbing the casino"};
9+
if(!robenable)exitwith{hintSilent "You are already robbing the casino"};
1010
if(!(call INV_isArmed) and !enableDebug)exitWith{hintSilent localize "STRS_casino_rob_noweapon";};
1111

1212
robenable = false;

0 commit comments

Comments
 (0)