(Temporarily) switch to a minetest_game fork.
• (Hopefully temporarily) switch to my minetest_game fork, that removes binoculars (it currently doesn't work with minetest-luk3yx-4 0.4.19), and fixes the player collisionbox offset.
This commit is contained in:
parent
4990564959
commit
b3dc9b6b45
@ -8,7 +8,7 @@ stages:
|
|||||||
- package
|
- package
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
MINETEST_GAME_REPO: "https://github.com/minetest/minetest_game.git"
|
MINETEST_GAME_REPO: "https://gitlab.com/luk3yx/minetest_game.git"
|
||||||
CONTAINER_IMAGE: registry.gitlab.com/$CI_PROJECT_PATH
|
CONTAINER_IMAGE: registry.gitlab.com/$CI_PROJECT_PATH
|
||||||
|
|
||||||
.build_template: &build_definition
|
.build_template: &build_definition
|
||||||
|
10
README.md
10
README.md
@ -18,8 +18,8 @@ and contributors (see source file comments and the [version control log])
|
|||||||
In case you downloaded the source code:
|
In case you downloaded the source code:
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
If you downloaded the Minetest Engine source code in which this file is
|
If you downloaded the Minetest Engine source code in which this file is
|
||||||
contained, you probably want to download the [Minetest Game](https://github.com/minetest/minetest_game/)
|
contained, you probably want to download the [Minetest Game fork](https://github.com/luk3yx/minetest_game/)
|
||||||
project too. See its README.txt for more information.
|
(or the [original](https://github.com/minetest/minetest_game))project too. See its README.txt for more information.
|
||||||
|
|
||||||
Table of Contents
|
Table of Contents
|
||||||
------------------
|
------------------
|
||||||
@ -172,7 +172,7 @@ Download source (this is the URL to the latest of source repository, which might
|
|||||||
|
|
||||||
Download minetest_game (otherwise only the "Minimal development test" game is available) using Git:
|
Download minetest_game (otherwise only the "Minimal development test" game is available) using Git:
|
||||||
|
|
||||||
git clone --depth 1 https://github.com/minetest/minetest_game.git games/minetest_game
|
git clone --depth 1 https://github.com/luk3yx/minetest_game.git games/minetest_game
|
||||||
|
|
||||||
Download source, without using Git:
|
Download source, without using Git:
|
||||||
|
|
||||||
@ -183,7 +183,7 @@ Download source, without using Git:
|
|||||||
Download minetest_game, without using Git:
|
Download minetest_game, without using Git:
|
||||||
|
|
||||||
cd games/
|
cd games/
|
||||||
wget https://github.com/minetest/minetest_game/archive/master.tar.gz
|
wget https://github.com/luk3yx/minetest_game/archive/master.tar.gz
|
||||||
tar xf master.tar.gz
|
tar xf master.tar.gz
|
||||||
mv minetest_game-master minetest_game
|
mv minetest_game-master minetest_game
|
||||||
cd ..
|
cd ..
|
||||||
@ -296,7 +296,7 @@ Library specific options:
|
|||||||
### Compiling on Windows
|
### Compiling on Windows
|
||||||
|
|
||||||
* This section is outdated. In addition to what is described here:
|
* This section is outdated. In addition to what is described here:
|
||||||
* In addition to minetest, you need to download [minetest_game](https://github.com/minetest/minetest_game).
|
* In addition to minetest, you need to download [minetest_game](https://github.com/luk3yx/minetest_game).
|
||||||
* If you wish to have sound support, you need libogg, libvorbis and libopenal
|
* If you wish to have sound support, you need libogg, libvorbis and libopenal
|
||||||
|
|
||||||
* You need:
|
* You need:
|
||||||
|
@ -80,7 +80,7 @@ git_hash=$(git rev-parse --short HEAD)
|
|||||||
# Get minetest_game
|
# Get minetest_game
|
||||||
cd games
|
cd games
|
||||||
if [ "x$NO_MINETEST_GAME" = "x" ]; then
|
if [ "x$NO_MINETEST_GAME" = "x" ]; then
|
||||||
[ -d minetest_game ] && (cd minetest_game && git pull) || (git clone https://github.com/minetest/minetest_game)
|
[ -d minetest_game ] && (cd minetest_game && git pull) || (git clone https://gitlab.com/luk3yx/minetest_game)
|
||||||
(cd minetest_game && git checkout stable-0.4)
|
(cd minetest_game && git checkout stable-0.4)
|
||||||
fi
|
fi
|
||||||
cd ../..
|
cd ../..
|
||||||
|
@ -81,7 +81,7 @@ git_hash=$(git rev-parse --short HEAD)
|
|||||||
# Get minetest_game
|
# Get minetest_game
|
||||||
cd games
|
cd games
|
||||||
if [ "x$NO_MINETEST_GAME" = "x" ]; then
|
if [ "x$NO_MINETEST_GAME" = "x" ]; then
|
||||||
[ -d minetest_game ] && (cd minetest_game && git pull) || (git clone https://github.com/minetest/minetest_game)
|
[ -d minetest_game ] && (cd minetest_game && git pull) || (git clone https://gitlab.com/luk3yx/minetest_game)
|
||||||
(cd minetest_game && git checkout stable-0.4)
|
(cd minetest_game && git checkout stable-0.4)
|
||||||
fi
|
fi
|
||||||
cd ../..
|
cd ../..
|
||||||
|
Loading…
x
Reference in New Issue
Block a user