Delete func_bomb_target & info_bomb_target entities, bomb won't be given again. When
RestartRound is called there is a check for
m_bMapHasBombTarget. If true
GiveC4 is called, otherwise no one get the bomb. m_bMapHasBombTarget is filled like:
PHP Code:
if (UTIL_FindEntityByClassname(NULL, "func_bomb_target") != NULL)
{
m_bMapHasBombTarget = true;
m_bMapHasBombZone = true;
}
else if (UTIL_FindEntityByClassname(NULL, "info_bomb_target") != NULL)
{
m_bMapHasBombTarget = true;
m_bMapHasBombZone = false;
}
else
{
m_bMapHasBombTarget = false;
m_bMapHasBombZone = false;
}
So you see, removing them make the trick.
__________________