mc-beta-server/server/blocks/BlockBehaviourCraftingTable.ts
Holly 65d31be4f9
All checks were successful
Node.js Build / build (20.x) (push) Successful in 5m16s
crafting table
2024-11-29 15:00:48 +00:00

10 lines
No EOL
287 B
TypeScript

import TileEntityChest from "../tileentities/TileEntityChest";
import Vec3 from "../Vec3";
import World from "../World";
import BlockBehaviour from "./BlockBehaviour";
export default class BlockBehaviourCraftingTable extends BlockBehaviour {
public interactable() {
return true;
}
}