| 1680 | |
| 1681 | |
| 1682 | int cWorld::SpawnFallingBlock(int a_X, int a_Y, int a_Z, BLOCKTYPE BlockType, NIBBLETYPE BlockMeta) |
| 1683 | { |
| 1684 | cFallingBlock * FallingBlock = new cFallingBlock(Vector3i(a_X, a_Y, a_Z), BlockType, BlockMeta); |
| 1685 | FallingBlock->Initialize(this); |
| 1686 | return FallingBlock->GetUniqueID(); |
| 1687 | } |
| 1688 | |
| 1689 | |
| 1690 |
no test coverage detected