fixed typo

This commit is contained in:
Jonny_Bro (Nikita) 2023-06-16 23:57:26 +05:00
parent 45d50b0809
commit 8ef685b314
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ This version of the beatrun works on any version of the game (Chromium or not).
* [Custom online courses database](https://courses.beatrun.ru)! It's free 🤯 * [Custom online courses database](https://courses.beatrun.ru)! It's free 🤯
* Configurations menu - You can find it in the tool menu, in the *Beatrun* Category!\ * Configurations menu - You can find it in the tool menu, in the *Beatrun* Category!\
All of the settings below can be changed in the configuration menu All of the settings below can be changed in the configuration menu
* Allow Overdrive usage on the server - `Beatrun_AllowOvedriveInMultiplayer`. * Allow Overdrive usage on the server - `Beatrun_AllowOverdriveInMultiplayer`.
* Toggle between old and new (like in ME) Kick-Glitch - `Beatrun_OldKickGlitch`. * Toggle between old and new (like in ME) Kick-Glitch - `Beatrun_OldKickGlitch`.
* Change HUD's colors - `Beatrun_HUDTextColor`, `Beatrun_HUDCornerColor`, `Beatrun_HUDFloatingXPColor`. * Change HUD's colors - `Beatrun_HUDTextColor`, `Beatrun_HUDCornerColor`, `Beatrun_HUDFloatingXPColor`.
* Allow players to spawn props without admin rights - `Beatrun_AllowPropSpawn`. * Allow players to spawn props without admin rights - `Beatrun_AllowPropSpawn`.

View file

@ -403,7 +403,7 @@ end
local tr = {} local tr = {}
local tr_result = {} local tr_result = {}
local allow_overdrive = CreateConVar("Beatrun_AllowOvedriveInMultiplayer", 0, {FCVAR_REPLICATED, FCVAR_ARCHIVE}) local allow_overdrive = CreateConVar("Beatrun_AllowOverdriveInMultiplayer", 0, {FCVAR_REPLICATED, FCVAR_ARCHIVE})
function SWEP:PrimaryAttack() function SWEP:PrimaryAttack()
local ply = self:GetOwner() local ply = self:GetOwner()

View file

@ -153,7 +153,7 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
panel:CheckBox("Prop Spawning", "Beatrun_AllowPropSpawn") panel:CheckBox("Prop Spawning", "Beatrun_AllowPropSpawn")
panel:ControlHelp("Allows players without admin rights to spawn props, entities and weapons") panel:ControlHelp("Allows players without admin rights to spawn props, entities and weapons")
panel:CheckBox("Overdrive in Multiplayer", "Beatrun_AllowOvedriveInMultiplayer") panel:CheckBox("Overdrive in Multiplayer", "Beatrun_AllowOverdriveInMultiplayer")
panel:ControlHelp("Allows Overdrive usage on the server\nDoesn't affect singleplayer") panel:ControlHelp("Allows Overdrive usage on the server\nDoesn't affect singleplayer")
end) end)