Skip to content

Commit

Permalink
fixed maxrounds issue
Browse files Browse the repository at this point in the history
fixes #3
  • Loading branch information
B3none authored Feb 8, 2019
1 parent 41ac585 commit 4f869a2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripting/instadefuse.sp
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#include <sourcemod>
#include <sdkhooks>
#include <sdktools>
#include <cstrike>

Expand All @@ -23,7 +22,7 @@ public Plugin myinfo = {
name = "[Retakes] Instant Defuse",
author = "B3none, Eyal282",
description = "Allows a CT to instantly defuse the bomb when all Ts are dead and nothing can prevent the defusal.",
version = "1.1.0",
version = "1.1.1",
url = "https://github.com/b3none"
}

Expand Down Expand Up @@ -221,7 +220,6 @@ void IncrementTeamScore(int team)
{
int teamScore = CS_GetTeamScore(team) + 1;
CS_SetTeamScore(team, teamScore);
SetTeamScore(team, teamScore);
}

stock int GetDefusingPlayer()
Expand Down

0 comments on commit 4f869a2

Please sign in to comment.