1
0
Fork 0

improve rendering, fix lightmap

This commit is contained in:
Sen 2025-08-31 01:07:13 +02:00
parent ec9173433e
commit 0e003971bc
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
4 changed files with 15 additions and 13 deletions

View file

@ -1066,7 +1066,7 @@ public class Block {
@Clientside
public float getShinyness() {
return 1.0f;
return 0.75f;
}
@Clientside

View file

@ -17,6 +17,6 @@ public class BlockCyber extends BlockNonBlock {
@Clientside
public float getShinyness() {
return 0.0f;
return -32.0f;
}
}