diff --git a/cstrike/addons/amxmodx/configs/redm/gamemode_deathmatch.json b/cstrike/addons/amxmodx/configs/redm/gamemode_deathmatch.json index 302e544..ccd31fd 100644 --- a/cstrike/addons/amxmodx/configs/redm/gamemode_deathmatch.json +++ b/cstrike/addons/amxmodx/configs/redm/gamemode_deathmatch.json @@ -50,6 +50,9 @@ "redm_spawn_preset": "preset", // ReDM: Features + // Block the ability to drop the weapon. + "redm_block_drop_weapon": "1", + // Restore weapon slot on respawn. "redm_keep_weapon_slot": "1", diff --git a/cstrike/addons/amxmodx/scripting/ReDeathmatch/ReDM_features.inc b/cstrike/addons/amxmodx/scripting/ReDeathmatch/ReDM_features.inc index cafd8ed..464398a 100644 --- a/cstrike/addons/amxmodx/scripting/ReDeathmatch/ReDM_features.inc +++ b/cstrike/addons/amxmodx/scripting/ReDeathmatch/ReDM_features.inc @@ -44,7 +44,7 @@ Features_Init() { "redm_block_drop_weapon", "1", .has_min = true, .min_val = 0.0, .has_max = true, .max_val = 1.0, - .description = "Block the ability to drop the weapon.." + .description = "Block the ability to drop the weapon." ), redm_block_drop_weapon )