From 4f00b12b1d2b14e76c103e545c7093052d06c7b0 Mon Sep 17 00:00:00 2001 From: Zughy <4279489-marco_a@users.noreply.gitlab.com> Date: Fri, 12 Jun 2020 13:48:45 +0000 Subject: [PATCH] Getting Started - small fixes --- _it/basics/getting_started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_it/basics/getting_started.md b/_it/basics/getting_started.md index f5aac41..60b3ec9 100644 --- a/_it/basics/getting_started.md +++ b/_it/basics/getting_started.md @@ -172,7 +172,7 @@ I giochi hanno una propria struttura organizzativa che verrà spiegata nel loro ## Esempio -Here is an example which puts all of this together: +Segue un esempio che mette insieme tutto ciò discusso finora: ### Cartella mod lamiamod @@ -189,9 +189,9 @@ Here is an example which puts all of this together: ```lua print("Questo file parte al caricamento!") -minetest.register_node("mymod:nodo", { +minetest.register_node("lamiamod:nodo", { description = "Questo è un nodo", - tiles = {"mymod_nodo.png"}, + tiles = {"lamiamod_nodo.png"}, groups = {cracky = 1} }) ```