From 7b41ea03cb7a10e49e9f7c527c81b5d91549415a Mon Sep 17 00:00:00 2001 From: Andrey Akhmichin <15944199+nekonomicon@users.noreply.github.com> Date: Thu, 23 Jun 2022 06:59:21 +0500 Subject: [PATCH] cmake: enable game logic fixes. --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 489b84de..102e9071 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,12 +57,12 @@ else() option(64BIT "Disable auto -m32 appending to compiler flags" ON) endif() -option(BARNACLE_FIX_VISIBILITY "Enable barnacle tongue length fix" OFF) +option(BARNACLE_FIX_VISIBILITY "Enable barnacle tongue length fix" ON) option(CLIENT_WEAPONS "Enable client local weapons prediction" ON) -option(CROWBAR_IDLE_ANIM "Enable crowbar idle animation" OFF) -option(CROWBAR_DELAY_FIX "Enable crowbar attack delay fix" OFF) -option(CROWBAR_FIX_RAPID_CROWBAR "Enable rapid crowbar fix" OFF) -option(GAUSS_OVERCHARGE_FIX "Enable gauss overcharge fix" OFF) +option(CROWBAR_IDLE_ANIM "Enable crowbar idle animation" ON) +option(CROWBAR_DELAY_FIX "Enable crowbar attack delay fix" ON) +option(CROWBAR_FIX_RAPID_CROWBAR "Enable rapid crowbar fix" ON) +option(GAUSS_OVERCHARGE_FIX "Enable gauss overcharge fix" ON) option(OEM_BUILD "Enable OEM Build" OFF) option(HLDEMO_BUILD "Enable Demo Build" OFF)