Added check for resolutions in map send
This commit is contained in:
parent
d7b866d98d
commit
04dceef022
@ -316,10 +316,12 @@ function NetworkedMapAndTokens({ session }) {
|
||||
replyWithFile("ultra");
|
||||
break;
|
||||
case "original":
|
||||
if (map.resolutions.medium) {
|
||||
replyWithPreview("medium");
|
||||
} else if (map.resolutions.low) {
|
||||
replyWithPreview("low");
|
||||
if (map.resolutions) {
|
||||
if (map.resolutions.medium) {
|
||||
replyWithPreview("medium");
|
||||
} else if (map.resolutions.low) {
|
||||
replyWithPreview("low");
|
||||
}
|
||||
}
|
||||
replyWithFile();
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user