summaryrefslogtreecommitdiff
path: root/src/game/bg_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/bg_misc.c')
-rw-r--r--src/game/bg_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c
index 7bb663f7..ed0f56ac 100644
--- a/src/game/bg_misc.c
+++ b/src/game/bg_misc.c
@@ -1978,7 +1978,7 @@ int BG_ClassCanEvolveFromTo( int fclass, int tclass, int credits, int num )
int i, j;
//base case
- if( credits + 1 == 0 )
+ if( credits == 0 )
return 0;
if( tclass == PCL_NONE )