2024-10-26 14:24:38 +01:00
|
|
|
import Block from "./Block";
|
|
|
|
import BlockBehaviour from "./BlockBehaviour";
|
2023-11-05 00:55:23 +00:00
|
|
|
|
2024-10-26 14:24:38 +01:00
|
|
|
export default class BlockBehaviourStone extends BlockBehaviour {
|
2023-11-05 00:55:23 +00:00
|
|
|
public droppedItem(blockId:number) {
|
|
|
|
return Block.cobblestone.blockId;
|
|
|
|
}
|
|
|
|
}
|