Skip to content
New issue

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

improves clarity to owo bs #281

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/commands/commandList/battle/battleSetting.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ async function changeSettings(p){
args = args.toLowerCase();
args = args.split("=");
if(args.length!=2){
p.errorMsg(", The correct command is `owo battlesetting {settingName=setting}`");
p.errorMsg(", The correct command is `owo battlesetting {settingName=setting}`. Type `owo help battlesetting` for more information.");
return;
}

Expand Down Expand Up @@ -116,11 +116,11 @@ async function changeSettings(p){
}else if(args[1]=='link'){
setting = 2;
}else{
p.errorMsg(", the log settings can only be `true`, or `false`!");
p.errorMsg(", the log settings can only be `true`, `false`, or `link`!");
return;
}
}else{
p.errorMsg(", the display settings can only be `logs`, `display`, or `speed`!");
p.errorMsg(", the battle settings can only be `display`, `speed`, or `logs`!");
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure why this was changed

return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/commands/commandList/battle/util/battleFriendUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ function toEmbedRequest(p,stats,bet,sender,receiver,flags){
name: `${receiver.username}, ${sender.username} challenges you to a duel!`,
icon_url: p.msg.author.avatarURL
},
description: "Bet amount: "+bet+" cowoncy"+flagText+acceptText+"\n`owo db` to decline the battle!",
description: "+flagText+acceptText+"\n`owo db` to decline the battle!",
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to remove "+

color:p.config.embed_color,
footer:{
text:"This challenge will expire in 10 minutes"
Expand Down