Go to file
2025-02-24 00:21:46 +00:00
gamedata Fix Formatting C: 2024-05-23 13:11:22 +02:00
hl2sdk-manifests@f559b1cc8f Update build scripts 2025-02-21 02:18:30 +02:00
include CSSFixes: remove some stuff into new extension PhysHooks 2019-12-20 11:18:44 +01:00
.gitignore Update build scripts 2025-02-21 02:18:30 +02:00
.gitmodules Update build scripts 2025-02-21 02:18:30 +02:00
AMBuilder Update build scripts 2025-02-21 02:18:30 +02:00
AMBuildScript Update build scripts 2025-02-21 02:18:30 +02:00
configure.py Update build scripts 2025-02-21 02:18:30 +02:00
extension.cpp I'm never using the pull request feature from gitea ever fucking again 2025-02-24 00:21:46 +00:00
extension.h updated AMbuildscript and extension header so css fixes can be build again 2025-01-24 17:51:37 +00:00
Makefile Fix Formatting C: 2024-05-23 13:11:22 +02:00
PackageScript Update build scripts 2025-02-21 02:18:30 +02:00
README.md initial commit 2016-05-12 16:10:42 +02:00
smsdk_config.h Fix for latest update 2025-02-21 02:17:01 +02:00

Counter-Strike: Source bug fixes

Fixes crash in filter_activator_*->TestActivator() when activator isn't valid anymore.

Fixes game_ui lag and player_speedmod turning off your flashlight.

Patchnotes

Thanks to the leaked Source Engine 2007 sourcecode.

File: se2007/game/server/game_ui.cpp

Line 292:
void CGameUI::Think( void )
[...]
	pPlayer->AddFlag( FL_ONTRAIN );
[...]

Replaced pPlayer->AddFlag( FL_ONTRAIN ); with NOP to fix prediction issues while having game_ui active.

File: se2007/game/server/player.cpp

Line: 7587
void CMovementSpeedMod::InputSpeedMod(inputdata_t &data)
[...]
			// Turn off the flashlight
			if ( pPlayer->FlashlightIsOn() )
			{
				pPlayer->FlashlightTurnOff();
			}
[...]

NOP'd out the block.