mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-06 12:53:21 +00:00
flyyoufools: remove debug statement
This commit is contained in:
parent
b4e52938df
commit
386d996a5c
1 changed files with 2 additions and 1 deletions
|
@ -85,6 +85,7 @@ New logic overview:
|
|||
3. Find the closest tank
|
||||
4. Retreat if in close range (~300 units)
|
||||
*/
|
||||
//TODO: possibly check if multiple loops being created
|
||||
public Action BotControlTimerV2(Handle timer)
|
||||
{
|
||||
//remove timer once tanks no longer exists/are all dead or finale escape vehicle arrived
|
||||
|
@ -150,7 +151,7 @@ public void FindExistingTank() {
|
|||
GetClientName(i, name, sizeof(name));
|
||||
if(StrContains(name, "Tank", true) > -1) {
|
||||
bIsTank[i] = true;
|
||||
PrintToServer("Found existing tank: %N (%i)", i, i);
|
||||
//PrintToServer("Found existing tank: %N (%i)", i, i);
|
||||
iAliveTanks++;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue