diff --git a/Sources/epoch_code/compile/p2p_trading/EPOCH_tradeRequest.sqf b/Sources/epoch_code/compile/p2p_trading/EPOCH_tradeRequest.sqf index 37cf244f..bdb087a6 100644 --- a/Sources/epoch_code/compile/p2p_trading/EPOCH_tradeRequest.sqf +++ b/Sources/epoch_code/compile/p2p_trading/EPOCH_tradeRequest.sqf @@ -15,7 +15,7 @@ if !(isNull _this) then { // ignore request if either player is in a vehicle if (vehicle player == player && vehicle _this == _this) then { - ["Trade request received, press 'T' to accept", 5] call Epoch_message; + [format ["Trade request received, Hold (%1)",EPOCH_keysAction call BIS_fnc_keyCode], 5] call Epoch_message; EPOCH_pendingP2ptradeTarget = _this; }; };