Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
397 B · 19 lines
C++
at master
12345678910111213141516171819#include "stdafx.h"
#include "DropperTileEntity.h"
wstring DropperTileEntity::getName(){ return hasCustomName() ? name : app.GetString(IDS_CONTAINER_DROPPER);}
// 4J Addedshared_ptr<TileEntity> DropperTileEntity::clone(){ shared_ptr<DropperTileEntity> result = shared_ptr<DropperTileEntity>( new DropperTileEntity() ); TileEntity::clone(result);
result->name = name;
return result;}