From 6aa776eab7081bcf470064100482b80a51e86211 Mon Sep 17 00:00:00 2001 From: Ruben Gonzalez Date: Wed, 16 Sep 2015 19:21:21 -0400 Subject: [PATCH] Add comments to VIP RoundEnd reasons. Fix typo. --- plugins/include/cstrike.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/include/cstrike.inc b/plugins/include/cstrike.inc index 9cbedcb7..c29e144c 100644 --- a/plugins/include/cstrike.inc +++ b/plugins/include/cstrike.inc @@ -51,8 +51,8 @@ enum CSRoundEndReason { CSRoundEnd_TargetBombed = 0, /**< Target Successfully Bombed! */ - CSRoundEnd_VIPEscaped, /**< The VIP has escaped! */ - CSRoundEnd_VIPKilled, /**< VIP has been assassinated! */ + CSRoundEnd_VIPEscaped, /**< The VIP has escaped! - Doesn't exist on CS:GO */ + CSRoundEnd_VIPKilled, /**< VIP has been assassinated! - Doesn't exist on CS:GO */ CSRoundEnd_TerroristsEscaped, /**< The terrorists have escaped! */ CSRoundEnd_CTStoppedEscape, /**< The CTs have prevented most of the terrorists from escaping! */ CSRoundEnd_TerroristsStopped, /**< Escaping terrorists have all been neutralized! */ @@ -64,13 +64,13 @@ enum CSRoundEndReason CSRoundEnd_TargetSaved, /**< Target has been saved! */ CSRoundEnd_HostagesNotRescued, /**< Hostages have not been rescued! */ CSRoundEnd_TerroristsNotEscaped, /**< Terrorists have not escaped! */ - CSRoundEnd_VIPNotEscaped, /**< VIP has not escaped! */ + CSRoundEnd_VIPNotEscaped, /**< VIP has not escaped! - Doesn't exist on CS:GO */ CSRoundEnd_GameStart, /**< Game Commencing! */ // The below only exist on CS:GO CSRoundEnd_TerroristsSurrender, /**< Terrorists Surrender */ CSRoundEnd_CTSurrender, /**< CTs Surrender */ - CSRoundEnd_TerroristsPlaned, /**< Terrorists Planted the bomb */ + CSRoundEnd_TerroristsPlanted, /**< Terrorists Planted the bomb */ CSRoundEnd_CTsReachedHostage, /**< CTs Reached the hostage */ };