Skip to content

Commit

Permalink
Merge pull request #1427 from CBATeam/xehSuppressed
Browse files Browse the repository at this point in the history
XEH - Add Suppressed EH from 2.02
  • Loading branch information
commy2 authored Feb 25, 2021
2 parents bc27e42 + f59e255 commit 0e310f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion addons/xeh/script_component.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,5 @@
"TurnIn", \
"TurnOut", \
"Deleted", \
"Disassembled"
"Disassembled", \
"Suppressed"
7 changes: 5 additions & 2 deletions addons/xeh/script_xeh.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ firedMan = "call cba_xeh_fnc_firedMan"; \
turnIn = "call cba_xeh_fnc_turnIn"; \
turnOut = "call cba_xeh_fnc_turnOut"; \
deleted = "call cba_xeh_fnc_deleted"; \
disassembled = "call cba_xeh_fnc_disassembled";
disassembled = "call cba_xeh_fnc_disassembled"; \
Suppressed = "call cba_xeh_fnc_Suppressed";

/*
MACRO: DELETE_EVENTHANDLERS
Expand Down Expand Up @@ -108,4 +109,6 @@ reloaded = ""; \
firedMan = ""; \
turnIn = ""; \
turnOut = ""; \
deleted = "";
deleted = ""; \
disassembled = ""; \
Suppressed = "";

0 comments on commit 0e310f7

Please sign in to comment.