Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
10 lines
260 B
C++
10 lines
260 B
C++
#include "stdafx.h"
|
|
#include "TheEndPortalTileEntity.h"
|
|
|
|
// 4J Added
|
|
shared_ptr<TileEntity> TheEndPortalTileEntity::clone()
|
|
{
|
|
shared_ptr<TheEndPortalTileEntity> result = std::make_shared<TheEndPortalTileEntity>();
|
|
TileEntity::clone(result);
|
|
return result;
|
|
} |