We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea79b0b commit 7d2678cCopy full SHA for 7d2678c
1 file changed
game/scripts/vscripts/modifiers/modifier_panic.ts
@@ -28,8 +28,10 @@ export class modifier_panic extends ModifierSpeed {
28
29
// Run when modifier instance is created
30
OnCreated(): void {
31
- // Think every 0.3 seconds
32
- this.StartIntervalThink(0.3);
+ if (IsServer()) {
+ // Think every 0.3 seconds
33
+ this.StartIntervalThink(0.3);
34
+ }
35
}
36
37
// Called when intervalThink is triggered
0 commit comments