mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
port weapon select
This commit is contained in:
@ -99,16 +99,16 @@ class ACE_Parameters_Boolean {
|
||||
};
|
||||
|
||||
class ACE_canInteractConditions {
|
||||
class ACE_Interaction_isNotEscorting {
|
||||
class GVAR(isNotEscorting) {
|
||||
condition = QUOTE( !(_player getVariable ['ACE_isEscorting', false]) );
|
||||
};
|
||||
class ACE_Interaction_isNotCaptive {
|
||||
class GVAR(isNotCaptive) {
|
||||
condition = QUOTE( !(_player getVariable ['ACE_isCaptive', false]) );
|
||||
};
|
||||
class ACE_Interaction_isNotSurrendering {
|
||||
class GVAR(isNotSurrendering) {
|
||||
condition = QUOTE( !(_player getVariable ['ACE_isSurrender', false]) );
|
||||
};
|
||||
class ACE_Interaction_isNotSwimming {
|
||||
class GVAR(isNotSwimming) {
|
||||
condition = QUOTE( !underwater _player );
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user