player_upgrade combination fix (#1803)

Adds systemChat to receive the combination for whatever you upgrade as
well as dayz_rollingMessages.

The same as what modular_build does.
This commit is contained in:
oiad
2016-11-28 05:36:47 +13:00
committed by ebaydayz
parent 15fa1fc7a7
commit 0b10b85e3a

View File

@@ -121,6 +121,7 @@ if ((count _upgrade) > 0) then {
_objectCharacterID = _combination; _objectCharacterID = _combination;
format[localize "str_epoch_player_158",_combination,_text] call dayz_rollingMessages; format[localize "str_epoch_player_158",_combination,_text] call dayz_rollingMessages;
systemChat format[localize "str_epoch_player_158",_combination,_text];
} else { } else {
format[localize "str_epoch_player_159",_text] call dayz_rollingMessages; format[localize "str_epoch_player_159",_text] call dayz_rollingMessages;
}; };