From 713b23a570bb3684bd66f3c9c5fec0560d41fc4f Mon Sep 17 00:00:00 2001 From: Lordmau5 Date: Mon, 5 Aug 2024 12:02:44 +0200 Subject: [PATCH] Disable `Get To The Marker!` for chat rapid-fire --- GTAChaos/src/effects/EffectDatabase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GTAChaos/src/effects/EffectDatabase.cs b/GTAChaos/src/effects/EffectDatabase.cs index d9dc8f5..c4af1f8 100644 --- a/GTAChaos/src/effects/EffectDatabase.cs +++ b/GTAChaos/src/effects/EffectDatabase.cs @@ -291,7 +291,7 @@ public static void PopulateEffects(string game) AddEffect(new FunctionEffect(Category.CustomEffects_Generic, "EASY TO READ", "ItsEasierToRead", "very_big_font_scale")); AddEffect(new FunctionEffect(Category.CustomEffects_Generic, "Forceful Explosives", "ABitTooMuchBoom", "forceful_explosions")); AddEffect(new FakeCrashEffect("Game Crash", "TooManyModsInstalled")); - AddEffect(new FunctionEffect(Category.CustomEffects_Generic, "Get To The Marker!", "GetToTheMarker", "get_to_marker", 1000 * 60 * 5)); + AddEffect(new FunctionEffect(Category.CustomEffects_Generic, "Get To The Marker!", "GetToTheMarker", "get_to_marker", 1000 * 60 * 5).DisableRapidFire()); AddEffect(new FunctionEffect(Category.CustomEffects_Generic, "haha funni font", "ComicSansMasterRace", "font_comic_sans")); AddEffect(new FunctionEffect(Category.CustomEffects_Generic, "Invisible Fire", "InvisibleFire", "invisible_fire")); AddEffect(new FunctionEffect(Category.CustomEffects_Generic, "It's Morbin Time", "ItsMorbinTime", "textures_its_morbin_time"));