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 enum
{ {
ITBD_PARALLYZE = 0, ITBD_PARALYZE = 0,
ITBD_NERVE_GAS, ITBD_NERVE_GAS,
ITBD_POISON, ITBD_POISON,
ITBD_RADIATION, ITBD_RADIATION,

View File

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