Made soos more smooth, added server count to prometheus, fixed unhandled soundplayer error

This commit is contained in:
Essem 2021-08-16 23:04:11 -05:00
parent 382480e1c7
commit 560d3883ad
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
4 changed files with 22 additions and 11 deletions

View file

@ -27,6 +27,8 @@ Napi::Value Reverse(const Napi::CallbackInfo &info) {
if (soos) {
list<Image> copy = coalesced;
copy.reverse();
copy.pop_back();
copy.pop_front();
coalesced.insert(coalesced.end(), copy.begin(), copy.end());
} else {
coalesced.reverse();