Fix TimeBasedDamage Paralyze decl typo (#748)

[skip ci]
This commit is contained in:
RauliTop 2022-12-16 10:13:42 +01:00 committed by GitHub
parent f3fb30fd9d
commit 9a001cabd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
enum
{
ITBD_PARALLYZE = 0,
ITBD_PARALYZE = 0,
ITBD_NERVE_GAS,
ITBD_POISON,
ITBD_RADIATION,

View File

@ -4735,7 +4735,7 @@ void CBasePlayer::CheckTimeBasedDamage()
{
switch (i)
{
case ITBD_PARALLYZE:
case ITBD_PARALYZE:
// UNDONE - flag movement as half-speed
bDuration = PARALYZE_DURATION;
break;