Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Minetest-Mods programmieren
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Teckids
Projekt Hack-n-Fun
Material und Vorlagen
Minetest-Mods programmieren
Compare revisions
main to main
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
Teckids/hacknfun/material/minetest-mods-programmieren
Select target project
No results found
main
Select Git revision
Branches
main
Swap
Target
tuxilio/minetest-mods-programmieren
Select target project
Teckids/hacknfun/material/minetest-mods-programmieren
tuxilio/minetest-mods-programmieren
2 results
main
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
Add new file
· 84801f55
Tuxilio
authored
1 year ago
84801f55
Merge branch 'tuxilio-main-patch-09116' into 'main'
· 73d2f89f
Tuxilio
authored
1 year ago
Add new file See merge request
!1
73d2f89f
update mod name to something workshop-name-independent
· 6bca058b
Tuxilio
authored
4 months ago
Verified
6bca058b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
init.lua
+4
-4
4 additions, 4 deletions
init.lua
mod.conf
+5
-0
5 additions, 0 deletions
mod.conf
with
9 additions
and
4 deletions
init.lua
View file @
6bca058b
-- Minetest Mod
minetest
.
register_node
(
"
cltmod
:tux"
,
{
description
=
"
CLT-
Tux"
,
tiles
=
{
"
cltmod
_tux.png"
},
minetest
.
register_node
(
"
penguins
:tux"
,
{
description
=
"Tux"
,
tiles
=
{
"
penguins
_tux.png"
},
groups
=
{
cracky
=
1
}
})
minetest
.
register_craft
({
type
=
"shaped"
,
output
=
"
cltmod
:tux 1"
,
output
=
"
penguins
:tux 1"
,
recipe
=
{
{
""
,
"default:goldblock"
,
""
},
{
"default:obsidian"
,
"default:steelblock"
,
"default:obsidian"
},
...
...
This diff is collapsed.
Click to expand it.
mod.conf
0 → 100644
View file @
6bca058b
name
=
penguins
title
=
Pinguine
description
=
Mod
-
Anleitung
mit
Pinguinen
release
=
0
.
1
author
=
magicfelix
,
Pingu
,
Tuxilio
This diff is collapsed.
Click to expand it.