Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

Commit

Permalink
FIXED Compatible blood and litter from the painkiller
Browse files Browse the repository at this point in the history
  • Loading branch information
Katalam committed Feb 17, 2019
1 parent f2a01f7 commit 6c62c57
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions addons/kat_acecirculation/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,7 @@ class ACE_Medical_Actions {
items[] = {};
callbackSuccess = "['KAT_Painkiller', _player, _target, _selectionName, 'Painkillers'] call kat_aceCirculation_fnc_removeItemfromMag";
condition = "('KAT_Painkiller' in (magazines _player) || 'KAT_Painkiller' in (magazines _target))";
litter[] = {};
};
class CheckDogtags: checkPulse {
displayName = $STR_KAT_aceCirculation_DogTag;
Expand Down Expand Up @@ -484,15 +485,15 @@ class ACE_Medical_Advanced {
};
class BloodIV_A: BloodIV {
bloodType = "A";
compatibility[] = {"A", "AB"};
compatibility[] = {"O", "A", "AB"};
};
class BloodIV_B: BloodIV {
bloodType = "B";
compatibility[] = {"B", "AB"};
compatibility[] = {"O", "B", "AB"};
};
class BloodIV_AB: BloodIV {
bloodType = "AB";
compatibility[] = {"AB"};
compatibility[] = {"O", "AB"};
};

class BloodIV_O_500: BloodIV_500 {
Expand All @@ -501,15 +502,15 @@ class ACE_Medical_Advanced {
};
class BloodIV_A_500: BloodIV_500 {
bloodType = "A";
compatibility[] = {"A", "AB"};
compatibility[] = {"O", "A", "AB"};
};
class BloodIV_B_500: BloodIV_500 {
bloodType = "B";
compatibility[] = {"B", "AB"};
compatibility[] = {"O", "B", "AB"};
};
class BloodIV_AB_500: BloodIV_500 {
bloodType = "AB";
compatibility[] = {"AB"};
compatibility[] = {"O", "AB"};
};

class BloodIV_O_250: BloodIV_250 {
Expand All @@ -518,15 +519,15 @@ class ACE_Medical_Advanced {
};
class BloodIV_A_250: BloodIV_250 {
bloodType = "A";
compatibility[] = {"A", "AB"};
compatibility[] = {"O", "A", "AB"};
};
class BloodIV_B_250: BloodIV_250 {
bloodType = "B";
compatibility[] = {"B", "AB"};
compatibility[] = {"O", "B", "AB"};
};
class BloodIV_AB_250: BloodIV_250 {
bloodType = "AB";
compatibility[] = {"AB"};
compatibility[] = {"O", "AB"};
};
};
class Medication {
Expand Down

0 comments on commit 6c62c57

Please sign in to comment.