mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-09 20:03:21 +00:00
Remove debug stuff
This commit is contained in:
parent
0dc2644ee9
commit
8fa970da0d
1 changed files with 0 additions and 8 deletions
|
@ -26,13 +26,6 @@ enum trollFlag {
|
||||||
Flag_8 = 1 << 7,
|
Flag_8 = 1 << 7,
|
||||||
}
|
}
|
||||||
|
|
||||||
enum valueType {
|
|
||||||
Value_None,
|
|
||||||
Value_Float,
|
|
||||||
Value_String,
|
|
||||||
Value_Integer
|
|
||||||
}
|
|
||||||
|
|
||||||
StringMap trollKV;
|
StringMap trollKV;
|
||||||
char trollIds[MAX_TROLLS+1][MAX_TROLL_NAME_LENGTH];
|
char trollIds[MAX_TROLLS+1][MAX_TROLL_NAME_LENGTH];
|
||||||
char DEFAULT_FLAG_PROMPT_MULTIPLE[] = "Enable options (Multiple)";
|
char DEFAULT_FLAG_PROMPT_MULTIPLE[] = "Enable options (Multiple)";
|
||||||
|
@ -372,7 +365,6 @@ void ApplyTroll(int victim, const char[] name, int activator, trollModifier modi
|
||||||
|
|
||||||
// Clear troll specific timer:
|
// Clear troll specific timer:
|
||||||
if(Trolls[trollIndex].timerInterval > 0.0) {
|
if(Trolls[trollIndex].timerInterval > 0.0) {
|
||||||
PrintToServer("epi: there is timer for \"%s\", flags=%d", name, flags);
|
|
||||||
if(!isActive) {
|
if(!isActive) {
|
||||||
if(Trolls[trollIndex].timerRequiredFlags == 0 || Trolls[trollIndex].timerRequiredFlags & flags) {
|
if(Trolls[trollIndex].timerRequiredFlags == 0 || Trolls[trollIndex].timerRequiredFlags & flags) {
|
||||||
Trolls[trollIndex].timerHandles[victim] = CreateTimer(Trolls[trollIndex].timerInterval, Trolls[trollIndex].timerFunction, victim, TIMER_REPEAT);
|
Trolls[trollIndex].timerHandles[victim] = CreateTimer(Trolls[trollIndex].timerInterval, Trolls[trollIndex].timerFunction, victim, TIMER_REPEAT);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue