Remove isMobile log output

This commit is contained in:
Eliot Partridge
2019-10-01 20:03:16 -05:00
parent 7cca54b560
commit a4aeb8fdd9
+1 -1
View File
@@ -836,7 +836,7 @@ export function switchTool(client: IClient, reverse: boolean) {
const newIndex = reverse ? (index === -1 ? tools.length - 1 : index - 1) : ((index + 1) % tools.length); const newIndex = reverse ? (index === -1 ? tools.length - 1 : index - 1) : ((index + 1) % tools.length);
const tool = tools[newIndex]; const tool = tools[newIndex];
holdItem(client.pony, tool.type); holdItem(client.pony, tool.type);
console.log('isMobile ' + client.isMobile); // console.log('isMobile ' + client.isMobile);
const text = (client.isMobile && tool.textMobile) ? tool.textMobile : tool.text; const text = (client.isMobile && tool.textMobile) ? tool.textMobile : tool.text;
saySystem(client, text); saySystem(client, text);
} }