Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
teleport_potion
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
teleport_potion
Compare revisions
5d1c07e195ae544a33564ab2164cfa6fd89c6170 to 1a150b3ddbade34714e3ac0867109c40f5742d56
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
Illuna-Minetest/teleport_potion
Select target project
No results found
1a150b3ddbade34714e3ac0867109c40f5742d56
Select Git revision
Branches
master
Swap
Target
Illuna-Minetest/teleport_potion
Select target project
Illuna-Minetest/teleport_potion
1 result
5d1c07e195ae544a33564ab2164cfa6fd89c6170
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
re-addd potion recipe and remove pad recipe
· 1a150b3d
Milan
authored
7 years ago
1a150b3d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
init.lua
+4
-4
4 additions, 4 deletions
init.lua
with
4 additions
and
4 deletions
init.lua
View file @
1a150b3d
...
...
@@ -194,7 +194,7 @@ minetest.register_node("teleport_potion:potion", {
end
,
})
--
[[
teleport potion recipe
-- teleport potion recipe
minetest
.
register_craft
({
output
=
"teleport_potion:potion"
,
recipe
=
{
...
...
@@ -202,7 +202,7 @@ minetest.register_craft({
{
"default:diamond"
,
"vessels:glass_bottle"
,
"default:diamond"
},
{
""
,
"default:diamond"
,
""
},
},
})
]]
})
-- teleport pad
minetest
.
register_node
(
"teleport_potion:pad"
,
{
...
...
@@ -311,7 +311,7 @@ teleport_potion.can_access = function(pos,player)
return
false
end
-- teleport pad recipe
--
[[
teleport pad recipe
minetest.register_craft({
output = 'teleport_potion:pad',
recipe = {
...
...
@@ -319,7 +319,7 @@ minetest.register_craft({
{"default:glass", "default:mese", "default:glass"},
{"teleport_potion:potion", "default:glass", "teleport_potion:potion"}
}
})
})
]]
-- check portal & pad, teleport any entities on top
minetest
.
register_abm
({
...
...
This diff is collapsed.
Click to expand it.