From 6e9ce9b8922b73a7052e5f0aeb1539f83d9bad07 Mon Sep 17 00:00:00 2001 From: core Date: Wed, 5 Jul 2023 21:37:46 -0400 Subject: [PATCH] fix the goddamn texture packer bug 2: electric boogaloo --- client/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/index.ts b/client/src/index.ts index b67cfda0245fe001bd63e87bf8a006fbbda132f7..1409d035c9a9206f1eafb2c2528b655fd424112c 100644 --- a/client/src/index.ts +++ b/client/src/index.ts @@ -329,8 +329,8 @@ async function client_main(server: string, username: string, texture_quality: st indic_tex.frame.y, indic_tex.frame.w-1, indic_tex.frame.h-1, - -(indic_tex.frame.w-1)/2, - -(indic_tex.frame.h-1)/2, + -indic_tex.frame.w/2-1, + -indic_tex.frame.h/2-1, indic_tex.frame.w-1, indic_tex.frame.h-1 );