diff --git a/public/themes/pterodactyl/js/frontend/console.js b/public/themes/pterodactyl/js/frontend/console.js index d96aaefd4..97bd73854 100644 --- a/public/themes/pterodactyl/js/frontend/console.js +++ b/public/themes/pterodactyl/js/frontend/console.js @@ -198,8 +198,8 @@ function pushToTerminal(string) { $('#terminal').html(''); data.split(/\n/g).forEach(function (item) { pushToTerminal(item); - window.scrollToBottom(); }); + window.scrollToBottom(); }); Socket.on('console', function (data) {