Git Product home page Git Product logo

minetest-mods's Introduction

A Collection of Minetest Mods

This is a collection of mods as used by our personal minetest server. Each mod is either included as a git-submodule (preferred) or, if that is not possible, directly contained in this repository. Additionally, local modifications of certain modes (like disabling particular features) are included as separate patches in the patches directory. These can be applied with quilt push -a Before updating mods, unapply the patches with quilt pop -a. See also section on setting up git below.

After cloning, use git to check out all submodules like so:

git submodule update --init --recursive

Then start minetest, edit world.mt to enable all desired modules, and restart again. Enjoy! โ˜บ

For licenses and copyrights see the corresponding mods. All that remains is licensed under an MIT License.

To automatically update a local copy of this git repository on updates, perform the following configuration

  • Make the local copy update its worktree on push, instead of barfing:

    git config receive.denyCurrentBranch updateInstead
  • When updating the worktree after push, first remove all patches, then update, then update all submodules, and then reapply all patches:

    cat <<SCRIPT > .git/hooks/push-to-checkout
    #!/bin/sh
    
    quilt pop -a
    git read-tree -u -m HEAD "$1"
    git submodule update --init
    quilt push -a
    chmod -R a+rX .
    SCRIPT
    chmod +x .git/hooks/push-to-checkout

minetest-mods's People

Contributors

exot avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

minetest-mods's Issues

[Add] Recipes

Sunflower -> Yellow Dye
Sunflower + Sunflower -> Oil
Pumpkin Slice -> Orange Dye
Blueberry -> Blue Dye
Tomato -> Red Dye

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.