From a98c32853a9baac3e43e844857235ead83cfed21 Mon Sep 17 00:00:00 2001 From: sapphonie Date: Sun, 8 Aug 2021 23:38:53 -0400 Subject: [PATCH 1/8] fix tftrue detection --- addons/sourcemod/scripting/rglqol.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/sourcemod/scripting/rglqol.sp b/addons/sourcemod/scripting/rglqol.sp index 5662aad..c8f9ce0 100644 --- a/addons/sourcemod/scripting/rglqol.sp +++ b/addons/sourcemod/scripting/rglqol.sp @@ -182,7 +182,7 @@ public SetDefaultWhitelist() // check to see if tftrue exists, and if it fails to load after a tf2 update use default mp_tournament_whitelist if(FileExists("addons/TFTrue.vdf")) { - if (FindConVar("tftrue_version") != INVALID_HANDLE) + if (FindConVar("tftrue_version") == INVALID_HANDLE) { LogMessage("[RGLQoL] TFTrue exists but is not loaded, may be broken. Using default mp_tournament_whitelist value instead."); From 8fe7c15d3c56f00414449e26f967b6c824172496 Mon Sep 17 00:00:00 2001 From: Aad <7024626+l-Aad-l@users.noreply.github.com> Date: Mon, 9 Aug 2021 13:29:14 -0400 Subject: [PATCH 2/8] Revert "fix tftrue detection" --- addons/sourcemod/scripting/rglqol.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/sourcemod/scripting/rglqol.sp b/addons/sourcemod/scripting/rglqol.sp index c8f9ce0..5662aad 100644 --- a/addons/sourcemod/scripting/rglqol.sp +++ b/addons/sourcemod/scripting/rglqol.sp @@ -182,7 +182,7 @@ public SetDefaultWhitelist() // check to see if tftrue exists, and if it fails to load after a tf2 update use default mp_tournament_whitelist if(FileExists("addons/TFTrue.vdf")) { - if (FindConVar("tftrue_version") == INVALID_HANDLE) + if (FindConVar("tftrue_version") != INVALID_HANDLE) { LogMessage("[RGLQoL] TFTrue exists but is not loaded, may be broken. Using default mp_tournament_whitelist value instead."); From ac8c7975d3763714926bf420ba34014376023a47 Mon Sep 17 00:00:00 2001 From: sapphonie Date: Mon, 9 Aug 2021 17:24:58 -0400 Subject: [PATCH 3/8] Update rglqol.sp --- addons/sourcemod/scripting/rglqol.sp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/sourcemod/scripting/rglqol.sp b/addons/sourcemod/scripting/rglqol.sp index 5662aad..84b192e 100644 --- a/addons/sourcemod/scripting/rglqol.sp +++ b/addons/sourcemod/scripting/rglqol.sp @@ -182,7 +182,8 @@ public SetDefaultWhitelist() // check to see if tftrue exists, and if it fails to load after a tf2 update use default mp_tournament_whitelist if(FileExists("addons/TFTrue.vdf")) { - if (FindConVar("tftrue_version") != INVALID_HANDLE) + // if we don't have a handle for tftrue version it's not loaded + if (FindConVar("tftrue_version") == null) { LogMessage("[RGLQoL] TFTrue exists but is not loaded, may be broken. Using default mp_tournament_whitelist value instead."); From d3fca137c819f05035261f32bfd8a4eca5bdaf55 Mon Sep 17 00:00:00 2001 From: Aad <7024626+l-Aad-l@users.noreply.github.com> Date: Wed, 6 Oct 2021 19:42:24 -0400 Subject: [PATCH 4/8] Update VERSION.md --- VERSION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION.md b/VERSION.md index 3ad8af7..362a081 100644 --- a/VERSION.md +++ b/VERSION.md @@ -2,4 +2,4 @@ In order to automatically update the whitelists/plugins easily without the need NOTE: This file does not need to be touched if you do other commits as the whitelists will get updated anyways on all commits and eventually merges to master. Only do a version bump if you do not have any other changes to make to the file to force whitelist/plugin updates. -v90? \ No newline at end of file +v98 From e39434ac7452132259184613ee88a887690c06d2 Mon Sep 17 00:00:00 2001 From: Aad <7024626+l-Aad-l@users.noreply.github.com> Date: Fri, 14 Jan 2022 18:10:24 -0500 Subject: [PATCH 5/8] Update rgl_base.cfg --- cfg/rgl_base.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cfg/rgl_base.cfg b/cfg/rgl_base.cfg index 70fbd2c..ac75702 100644 --- a/cfg/rgl_base.cfg +++ b/cfg/rgl_base.cfg @@ -20,6 +20,8 @@ sm_remove_medic_attach_speed 0 sm_remove_pipe_spin 0 sm_rest_in_peace_rick_may 128 sm_winger_jump_bonus_when_fully_deployed 0 +sm_inhibit_extendfreeze 1 +sm_fix_post_pause_state 1 // Removes holiday events tf_forced_holiday 0 From a7c6f8a7e583cced588c653cf404b645ce316a4b Mon Sep 17 00:00:00 2001 From: Aad <7024626+l-Aad-l@users.noreply.github.com> Date: Sun, 16 Jan 2022 16:56:29 -0500 Subject: [PATCH 6/8] Froze tf2-comp-fixes to v1.15.0 in main.yml --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7d7f6e0..5b6206b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,9 +42,11 @@ jobs: # TF2 Comp Fixes: https://github.com/ldesgoui/tf2-comp-fixes # Dhooks2 wget link needs to be updated every time DHooks2 receives an update as their download URL(detour*-sm110) changes on each release + # Removed updating to latest tf2-comp-fixes due to issues with windows servers + # wget -q -O tmp.zip https://github.com/ldesgoui/tf2-comp-fixes/releases/latest/download/tf2-comp-fixes.zip && unzip -o tmp.zip -d ../../ && rm tmp.zip - name: Get latest version of TF2 Comp Fixes and its DHooks dependency run: | - wget -q -O tmp.zip https://github.com/ldesgoui/tf2-comp-fixes/releases/latest/download/tf2-comp-fixes.zip && unzip -o tmp.zip -d ../../ && rm tmp.zip + wget -q -O tmp.zip https://github.com/ldesgoui/tf2-comp-fixes/releases/download/v1.15.0/tf2-comp-fixes.zip && unzip -o tmp.zip -d ../../ && rm tmp.zip wget -q -O tmp.zip https://github.com/peace-maker/DHooks2/releases/download/v2.2.0-detours16/dhooks-2.2.0-detours16-sm110.zip && unzip -o tmp.zip -d ../../ && rm tmp.zip working-directory: ${{ env.SOURCEMOD_PATH }}/ @@ -161,4 +163,4 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_branch: updater-beta - publish_dir: build/ \ No newline at end of file + publish_dir: build/ From 3d56eebbbf9e79cab78d73870b950f1dc919ee42 Mon Sep 17 00:00:00 2001 From: Aad <7024626+l-Aad-l@users.noreply.github.com> Date: Sun, 16 Jan 2022 16:57:11 -0500 Subject: [PATCH 7/8] froze tf2-comp-fixes to 1.15.0 in release.yml --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bcd704b..57acdc3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,9 +43,11 @@ jobs: # TF2 Comp Fixes: https://github.com/ldesgoui/tf2-comp-fixes # Dhooks2 wget link needs to be updated every time DHooks2 receives an update as their download URL(detour*-sm110) changes on each release + # Removed updating to latest tf2-comp-fixes due to issues with windows servers + # wget -q -O tmp.zip https://github.com/ldesgoui/tf2-comp-fixes/releases/latest/download/tf2-comp-fixes.zip && unzip -o tmp.zip -d ../../ && rm tmp.zip - name: Get latest version of TF2 Comp Fixes and its DHooks dependency run: | - wget -q -O tmp.zip https://github.com/ldesgoui/tf2-comp-fixes/releases/latest/download/tf2-comp-fixes.zip && unzip -o tmp.zip -d ../../ && rm tmp.zip + wget -q -O tmp.zip https://github.com/ldesgoui/tf2-comp-fixes/releases/download/v1.15.0/tf2-comp-fixes.zip && unzip -o tmp.zip -d ../../ && rm tmp.zip wget -q -O tmp.zip https://github.com/peace-maker/DHooks2/releases/download/v2.2.0-detours16/dhooks-2.2.0-detours16-sm110.zip && unzip -o tmp.zip -d ../../ && rm tmp.zip working-directory: ${{ env.SOURCEMOD_PATH }}/ From c9edca3daf2e4b7dc8bc933e98efb8b268a3967a Mon Sep 17 00:00:00 2001 From: Aad <7024626+l-Aad-l@users.noreply.github.com> Date: Sun, 16 Jan 2022 17:13:43 -0500 Subject: [PATCH 8/8] Updates to rgl_base.cfg - disabled pause state due to bug (https://github.com/ldesgoui/tf2-comp-fixes/issues/82) - added all missing tf2-comp-fixes commands - disabled incorrectly enabled 'sm_empty_active_ubercharges_when_dropped' by tf2-comp-fixes rgl preset --- cfg/rgl_base.cfg | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/cfg/rgl_base.cfg b/cfg/rgl_base.cfg index ac75702..2d26dce 100644 --- a/cfg/rgl_base.cfg +++ b/cfg/rgl_base.cfg @@ -10,18 +10,25 @@ sm_updater_check // autoupdates to prevent tampe // TF2 Comp Fixes sm_deterministic_fall_damage 1 +sm_empty_active_ubercharges_when_dropped 0 sm_fix_ghost_crossbow_bolts 1 +sm_fix_post_pause_state 0 +sm_fix_reflect_self_damage 0 sm_fix_slope_bug 1 sm_fix_sticky_delay 1 -sm_gunboats_always_apply 0 -sm_projectiles_ignore_teammates 0 +sm_inhibit_extendfreeze 1 +sm_override_pipe_size 0 +sm_projectiles_collide_with_cylinders 0 +sm_projectiles_ignore_teammates 0 sm_remove_halloween_souls 1 -sm_remove_medic_attach_speed 0 sm_remove_pipe_spin 0 sm_rest_in_peace_rick_may 128 +sm_grounded_rj_resistance 0 +sm_gunboats_always_apply 0 +sm_prevent_respawning 0 +sm_remove_medic_attach_speed 0 +sm_solid_buildings 0 sm_winger_jump_bonus_when_fully_deployed 0 -sm_inhibit_extendfreeze 1 -sm_fix_post_pause_state 1 // Removes holiday events tf_forced_holiday 0