Skip to content
Merged
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
2 changes: 1 addition & 1 deletion add-ons/hpoke-exceptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ exports.setup = function (App) {
}
App.saveConfig();
App.logServerAction(context.user.id, "Changed hpoke exceptions.");
ok = "Hashpoke exceptions saved sucessfully.";
ok = "Hashpoke exceptions saved successfully.";
}

let exceptions = [];
Expand Down
2 changes: 1 addition & 1 deletion src/bot-modules/battle-log/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ exports.setup = function (App) {
let la = room.lastIndexOf("-");

if (la < 0) {
ws.send("a" + JSON.stringify(["|popup|The battle you requested does not exists"]));
ws.send("a" + JSON.stringify(["|popup|The battle you requested does not exist"]));
ws.close(); // Not found
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/bot-modules/battle/data/gen1/moves.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ exports.BattleMovedex = {
},
focusenergy: {
inherit: true,
desc: "If the attack deals critical hits sometimes, then the chance of its happening is quartered. If a move has a high chance of dealing a critical hit, if the user iis currently faster than the opposing Pokemon its critical hit ratio is not decreased. If it's slower, its chances of dealing a critical hit is cut by 50%. If the user is significantly slower than the opposing Pokemon, then the user will be unable to deal critical hits to the opposing Pokemon.",
desc: "If the attack deals critical hits sometimes, then the chance of its happening is quartered. If a move has a high chance of dealing a critical hit, if the user is currently faster than the opposing Pokemon its critical hit ratio is not decreased. If it's slower, its chances of dealing a critical hit is cut by 50%. If the user is significantly slower than the opposing Pokemon, then the user will be unable to deal critical hits to the opposing Pokemon.",
shortDesc: "Reduces the user's chance for a critical hit.",
effect: {
onStart: function (pokemon) {
Expand Down
2 changes: 1 addition & 1 deletion src/data-access/mysql.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class DataAccessManager {
}
}
if (!file) {
throw new Error("The file with name \"" + filename + "\" does not exists");
throw new Error("The file with name \"" + filename + "\" does not exist");
} else {
let data = '';
file = file.sort((a, b) => {
Expand Down