feat: init

This commit is contained in:
dxfiscool
2026-03-08 10:09:54 +01:00
commit 25809b8455
18807 changed files with 3944357 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#include "stdafx.h"
#include "DropperTileEntity.h"
wstring DropperTileEntity::getName()
{
return hasCustomName() ? name : app.GetString(IDS_CONTAINER_DROPPER);
}
// 4J Added
shared_ptr<TileEntity> DropperTileEntity::clone()
{
shared_ptr<DropperTileEntity> result = shared_ptr<DropperTileEntity>( new DropperTileEntity() );
TileEntity::clone(result);
result->name = name;
return result;
}