implement DebugArtToolsOn, fix strings and includes

This commit is contained in:
Tropical
2026-03-21 23:50:56 -05:00
parent d230a1e4e4
commit e444bef081
6 changed files with 6961 additions and 8403 deletions
+5 -6
View File
@@ -16,12 +16,11 @@ StoneMonsterTile::StoneMonsterTile(int id) : Tile(id, Material::clay) {
}
Icon* StoneMonsterTile::getTexture(int face, int data) {
// 4jcraft: removed in TU19 merge for now
// #ifndef _CONTENT_PACKAGE
// if (app.DebugArtToolsOn()) {
// return Tile::fire->getTexture(face, 0);
// }
// #endif
#ifndef _CONTENT_PACKAGE
if (app.DebugArtToolsOn()) {
return Tile::fire->getTexture(face, 0);
}
#endif
if (data == HOST_COBBLE) {
return Tile::cobblestone->getTexture(face);
}
+1 -1
View File
@@ -15,7 +15,7 @@
#include "../../Minecraft.Client/Player/LocalPlayer.h"
#include "../../Minecraft.Client/Player/ServerPlayer.h"
#include "../../Minecraft.Client/Network/PlayerConnection.h"
#include "../Minecraft.World/ChatPacket.h"
#include "../Network/ChatPacket.h"
#include "../Util/SoundTypes.h"
BucketItem::BucketItem(int id, int content) : Item(id) {