mirror of
https://github.com/ZDoom/Raze.git
synced 2025-02-20 18:42:26 +00:00
Apply patch from http://bugs.eduke32.com/index.php?do=details&task_id=21
git-svn-id: https://svn.eduke32.com/eduke32@5722 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
31326f2910
commit
f23eb60036
1 changed files with 1 additions and 1 deletions
|
@ -3521,7 +3521,7 @@ nullquote:
|
|||
break;
|
||||
|
||||
case GET_SHIELD:
|
||||
ps->inv_amount[GET_SHIELD] = max(ps->inv_amount[GET_SHIELD] + *insptr, ps->max_shield_amount);
|
||||
ps->inv_amount[GET_SHIELD] = min(ps->inv_amount[GET_SHIELD] + *insptr, ps->max_shield_amount);
|
||||
break;
|
||||
|
||||
case GET_ACCESS:
|
||||
|
|
Loading…
Reference in a new issue