Merge branch 'master' of github.com:Jackzmc/sourcemod-plugins

This commit is contained in:
Jackzie 2021-10-05 14:04:22 -05:00
commit 5cf5b91603
No known key found for this signature in database
GPG key ID: 1E834FE36520537A
2 changed files with 15 additions and 10 deletions

View file

@ -55,6 +55,14 @@ void SetupTrolls() {
SetupTroll("Inverted Controls", "Well, aint it obvious", TrollMod_Constant);
SetupTroll("Stagger", "Like a slap, but different", TrollMod_Instant);
//INFO: UP MAX_TROLLS when adding new trolls!
// Initialize the default flag values to -1
for(int i = 0; i <= MAX_TROLLS; i++) {
for(int j = 1; j <= MAXPLAYERS+1; j++) {
Trolls[i].activeFlagClients[j] = -1;
}
}
}
void AddMagnetFlags(int index) {