more cleanup
All checks were successful
deploy / deploy (push) Successful in 42s

This commit is contained in:
Lee
2024-04-08 05:29:05 +01:00
parent 3f7f1864a6
commit 1f45d26f53
11 changed files with 34 additions and 31 deletions

View File

@ -1,9 +1,9 @@
package cc.fascinated.controller;
import cc.fascinated.service.player.PlayerService;
import cc.fascinated.service.player.impl.Player;
import cc.fascinated.service.player.impl.Skin;
import cc.fascinated.service.player.impl.SkinPart;
import cc.fascinated.service.PlayerService;
import cc.fascinated.model.player.Player;
import cc.fascinated.model.player.Skin;
import cc.fascinated.model.player.SkinPart;
import lombok.NonNull;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.CacheControl;
@ -49,7 +49,7 @@ public class PlayerController {
@RequestParam(required = false, defaultValue = "250") int size) {
Player player = playerManagerService.getPlayer(id);
byte[] headBytes = new byte[0];
if (player != null) {
if (player != null) { // The player exists
Skin skin = player.getSkin();
SkinPart skinPart = skin.getPart(part);
if (skinPart != null) {
@ -57,7 +57,7 @@ public class PlayerController {
}
}
if (headBytes == null) {
if (headBytes == null) { // Fallback to the default head
headBytes = defaultHead.getPartData(size);
}