it works! pog
This commit is contained in:
parent
5966977a76
commit
8a3f399b1f
3 changed files with 11 additions and 2 deletions
|
@ -28,7 +28,7 @@ class LightsParser extends Command {
|
||||||
req(
|
req(
|
||||||
instructions.filter((i) => i.valid),
|
instructions.filter((i) => i.valid),
|
||||||
(response) => {
|
(response) => {
|
||||||
msg.channel.createMessage(`${response.statusCode}`);
|
msg.channel.createMessage(`${response}`);
|
||||||
},
|
},
|
||||||
(error) => {
|
(error) => {
|
||||||
msg.channel.createMessage(`error.`);
|
msg.channel.createMessage(`error.`);
|
||||||
|
|
|
@ -109,7 +109,10 @@ function parseSingleInstruction(str = '') {
|
||||||
item.errors = 'Not enough arguments.';
|
item.errors = 'Not enough arguments.';
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
inst_args = parsed_args[1].split(',').map((s) => (available_targets[s] ? s : parseInt(s.trim())));
|
inst_args = parsed_args[1]
|
||||||
|
.split(',')
|
||||||
|
.map((s) => s.trim())
|
||||||
|
.map((s) => (available_targets[s] ? s : parseInt(s)));
|
||||||
if (!inst_args.length) {
|
if (!inst_args.length) {
|
||||||
item.errors = 'No valid args.';
|
item.errors = 'No valid args.';
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,5 +24,11 @@ export default function req(data, callback, errorCallback) {
|
||||||
client.write(string_data);
|
client.write(string_data);
|
||||||
}
|
}
|
||||||
client.destroy();
|
client.destroy();
|
||||||
|
callback('success.');
|
||||||
|
});
|
||||||
|
|
||||||
|
client.on('error', (e) => {
|
||||||
|
client.destroy();
|
||||||
|
errorCallback(e);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue