jordan4ibanez 5ffa1b6d17 Also this is the regex I used
= "(.*?)"
2024-04-17 05:36:22 -04:00

16 lines
316 B
TypeScript

namespace hand {
utility.registerNode("hand", {
tiles: ["character.png"],
visual_scale: 1,
wield_scale: vector.create3d(1, 1, 1),
paramtype: ParamType1.light,
})
minetest.register_on_joinplayer((player: ObjectRef, _: string) => {
// print(`hello, ${player.get_player_name()}!`)
});
}