(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:
luk3yx 2019-03-12 18:11:01 +13:00
parent 4990564959
commit b3dc9b6b45
4 changed files with 8 additions and 8 deletions

View File

@ -8,7 +8,7 @@ stages:
- package
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
.build_template: &build_definition

View File

@ -18,8 +18,8 @@ and contributors (see source file comments and the [version control log])
In case you downloaded the source code:
---------------------------------------
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/)
project too. See its README.txt for more information.
contained, you probably want to download the [Minetest Game fork](https://github.com/luk3yx/minetest_game/)
(or the [original](https://github.com/minetest/minetest_game))project too. See its README.txt for more information.
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:
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:
@ -183,7 +183,7 @@ Download source, without using Git:
Download minetest_game, without using Git:
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
mv minetest_game-master minetest_game
cd ..
@ -296,7 +296,7 @@ Library specific options:
### Compiling on Windows
* 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
* You need:

View File

@ -80,7 +80,7 @@ git_hash=$(git rev-parse --short HEAD)
# Get minetest_game
cd games
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)
fi
cd ../..

View File

@ -81,7 +81,7 @@ git_hash=$(git rev-parse --short HEAD)
# Get minetest_game
cd games
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)
fi
cd ../..