From 4d5af8a946fb0c664c37cfe3a7814e41dea4842b Mon Sep 17 00:00:00 2001 From: Michael McKoy Date: Wed, 19 Dec 2007 01:20:56 +0000 Subject: [PATCH] Small adjustment to default convar values --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401808 --- plugins/basefuncommands/fire.sp | 2 +- plugins/basefuncommands/ice.sp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/basefuncommands/fire.sp b/plugins/basefuncommands/fire.sp index d6222d22..69ffb456 100644 --- a/plugins/basefuncommands/fire.sp +++ b/plugins/basefuncommands/fire.sp @@ -46,7 +46,7 @@ SetupFire() g_BurnDuration = CreateConVar("sm_burn_duration", "20", "Sets the default duration of sm_burn and firebomb victims.", 0, true, 0.5, true, 20.0); g_FireBombTicks = CreateConVar("sm_firebomb_ticks", "10", "Sets how long the FireBomb fuse is.", 0, true, 5.0, true, 120.0); - g_FireBombRadius = CreateConVar("sm_firebomb_radius", "1000", "Sets the bomb blast radius.", 0, true, 50.0, true, 3000.0); + g_FireBombRadius = CreateConVar("sm_firebomb_radius", "600", "Sets the bomb blast radius.", 0, true, 50.0, true, 3000.0); g_FireBombMode = CreateConVar("sm_firebomb_mode", "0", "Who is targetted by the FireBomb? 0 = Target only, 1 = Target's team, 2 = Everyone", 0, true, 0.0, true, 2.0); } diff --git a/plugins/basefuncommands/ice.sp b/plugins/basefuncommands/ice.sp index fb870215..c9dfc7db 100644 --- a/plugins/basefuncommands/ice.sp +++ b/plugins/basefuncommands/ice.sp @@ -48,7 +48,7 @@ SetupIce() g_FreezeDuration = CreateConVar("sm_freeze_duration", "10.0", "Sets the default duration for sm_freeze and freezebomb victims", 0, true, 1.0, true, 120.0); g_FreezeBombTicks = CreateConVar("sm_freezebomb_ticks", "10", "Sets how long the freezebomb fuse is.", 0, true, 5.0, true, 120.0); - g_FreezeBombRadius = CreateConVar("sm_freezebomb_radius", "1000", "Sets the freezebomb blast radius.", 0, true, 50.0, true, 3000.0); + g_FreezeBombRadius = CreateConVar("sm_freezebomb_radius", "600", "Sets the freezebomb blast radius.", 0, true, 50.0, true, 3000.0); g_FreezeBombMode = CreateConVar("sm_freezebomb_mode", "0", "Who is targetted by the freezebomb? 0 = Target only, 1 = Target's team, 2 = Everyone", 0, true, 0.0, true, 2.0); }