diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/action.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/action.h b/common/action.h index 1c07086..c4237e6 100644 --- a/common/action.h +++ b/common/action.h @@ -23,6 +23,8 @@ class Action { //! Target of action (if applicable). int target; + //! Second target of action (if applicable) + int target2; //! Player doing this action int player; @@ -31,6 +33,7 @@ class Action { void serialize(Archive & ar, const unsigned int version) { ar & type; ar & target; + ar & target2; ar & player; } }; |