We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
sed in entry.sh replaces all bot_quota_mode with bot_quota $CS2_BOT_QUOTA.
sed
bot_quota_mode
bot_quota $CS2_BOT_QUOTA
I believe it could be fixed by changing regex here:
CS2/bookworm/etc/entry.sh
Line 64 in 7de1841
Possible fix "s/bot_quota .*/bot_quota ${CS2_BOT_QUOTA}/". Note space between bot_quota and .*.
"s/bot_quota .*/bot_quota ${CS2_BOT_QUOTA}/"
bot_quota
.*
Another option is "s/bot_quota [0-9]*/bot_quota ${CS2_BOT_QUOTA}/".
"s/bot_quota [0-9]*/bot_quota ${CS2_BOT_QUOTA}/"
The text was updated successfully, but these errors were encountered:
Thanks for the bug report. I'll take a look when I have a mo.
Sorry, something went wrong.
0728ecc
joedwards32
Successfully merging a pull request may close this issue.
Hi!
sed
in entry.sh replaces allbot_quota_mode
withbot_quota $CS2_BOT_QUOTA
.I believe it could be fixed by changing regex here:
CS2/bookworm/etc/entry.sh
Line 64 in 7de1841
Possible fix
"s/bot_quota .*/bot_quota ${CS2_BOT_QUOTA}/"
. Note space betweenbot_quota
and.*
.Another option is
"s/bot_quota [0-9]*/bot_quota ${CS2_BOT_QUOTA}/"
.The text was updated successfully, but these errors were encountered: