the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 19 lines 397 B view raw
1#include "stdafx.h" 2 3#include "DropperTileEntity.h" 4 5wstring DropperTileEntity::getName() 6{ 7 return hasCustomName() ? name : app.GetString(IDS_CONTAINER_DROPPER); 8} 9 10// 4J Added 11shared_ptr<TileEntity> DropperTileEntity::clone() 12{ 13 shared_ptr<DropperTileEntity> result = shared_ptr<DropperTileEntity>( new DropperTileEntity() ); 14 TileEntity::clone(result); 15 16 result->name = name; 17 18 return result; 19}