Getting Started - small fixes

This commit is contained in:
Zughy 2020-06-12 13:48:45 +00:00 committed by rubenwardy
parent 4528250c0c
commit 4f00b12b1d

View File

@ -172,7 +172,7 @@ I giochi hanno una propria struttura organizzativa che verrà spiegata nel loro
## Esempio ## Esempio
Here is an example which puts all of this together: Segue un esempio che mette insieme tutto ciò discusso finora:
### Cartella mod ### Cartella mod
lamiamod lamiamod
@ -189,9 +189,9 @@ Here is an example which puts all of this together:
```lua ```lua
print("Questo file parte al caricamento!") print("Questo file parte al caricamento!")
minetest.register_node("mymod:nodo", { minetest.register_node("lamiamod:nodo", {
description = "Questo è un nodo", description = "Questo è un nodo",
tiles = {"mymod_nodo.png"}, tiles = {"lamiamod_nodo.png"},
groups = {cracky = 1} groups = {cracky = 1}
}) })
``` ```