Revert "Replace ItemCallbacks with lambdas (#3948)"
This reverts commit 496c337cdf.
This commit is contained in:
committed by
Alexander Harkness
parent
700bbdabf5
commit
49c443896d
@@ -44,12 +44,17 @@ public:
|
||||
return {};
|
||||
}
|
||||
|
||||
a_World.DoWithCommandBlockAt(a_Position.x, a_Position.y, a_Position.z, [](cCommandBlockEntity & a_CommandBlock)
|
||||
class cSetPowerToCommandBlock : public cCommandBlockCallback
|
||||
{
|
||||
public:
|
||||
virtual bool Item(cCommandBlockEntity * a_CommandBlock) override
|
||||
{
|
||||
a_CommandBlock.Activate();
|
||||
a_CommandBlock->Activate();
|
||||
return false;
|
||||
}
|
||||
);
|
||||
} CmdBlockSP;
|
||||
|
||||
a_World.DoWithCommandBlockAt(a_Position.x, a_Position.y, a_Position.z, CmdBlockSP);
|
||||
return {};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user