Fixed the item pickup radius being always doubled regardless of focus.
Bless the new GCC warnings.
This commit is contained in:
parent
89d235e9dc
commit
2b824fdfe4
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ void process_items(void) {
|
|||
int v;
|
||||
|
||||
float r = 30;
|
||||
if(global.plr.focus > 0);
|
||||
if(global.plr.focus > 0)
|
||||
r *= 2;
|
||||
|
||||
while(item != NULL) {
|
||||
|
|
Loading…
Reference in a new issue