Skip to content

Commit

Permalink
Unlocked rep ceiling for runs.
Browse files Browse the repository at this point in the history
  • Loading branch information
luciensadi committed Nov 27, 2023
1 parent 4080ead commit 6f941ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ bool rep_too_high(struct char_data *ch, int num)
if (num < 0 || num > top_of_questt)
return TRUE;

if (GET_REP(ch) > quest_table[num].max_rep)
if (quest_table[num].max_rep < 10000 && GET_REP(ch) > quest_table[num].max_rep)
return TRUE;

return FALSE;
Expand Down

0 comments on commit 6f941ca

Please sign in to comment.