mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-02-21 23:53:53 +00:00
Initial commit
This commit is contained in:
parent
2211ed7650
commit
ebb3dc9cdd
10121 changed files with 801 additions and 4 deletions
19
docs/base/scripts/autoexec/UEfix1.cs
Executable file
19
docs/base/scripts/autoexec/UEfix1.cs
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
// #autoload
|
||||
// #name = UEfix
|
||||
// #version = 1.0
|
||||
// #date = December 27, 2003
|
||||
// #category = Fix
|
||||
// #author = Lou Cypher
|
||||
// #warrior = LouCypher
|
||||
// #email = asta_llama_lincoln@hotmail.com
|
||||
// #web = http://deadzone.cjb.net
|
||||
// #description = Prevents clients from being vulnerable to crashing via NULL voice exploit
|
||||
|
||||
package UEfix {
|
||||
function alxGetWaveLen(%wavFile) {
|
||||
if ( strstr( %wavFile , ".wav" ) == -1 ) return $MaxMessageWavLength + 1;
|
||||
echo("Length check: " @ %wavFile);
|
||||
parent::alxGetWaveLen(%wavFile);
|
||||
}
|
||||
};
|
||||
activatePackage(UEfix);
|
||||
Loading…
Add table
Add a link
Reference in a new issue