Hoes can be crafted from the right

master
Solebull 2019-02-28 16:59:30 +01:00
parent 81c3cfe2a1
commit aa01910138
4 changed files with 29 additions and 13 deletions

27
ROADMAP
View File

@ -1,7 +1,6 @@
-*-org-*-
To find new mods, go to https://content.minetest.net/ and choose *random*
* v1.0.0
** v0.1.0
@ -124,6 +123,16 @@ It's really fast. May be used on a website, to show the actual map.
the player's inventory"
- [ ] Find some female skins
- [ ] See this error WARNING[Server]: Assignment to undeclared global "p2" inside a function at ...rainbru/.minetest/games/minetest-pvp/mods/ruins/init.lua:99.
**** Test new mods
To find new mods, go to https://content.minetest.net/ and choose *random*
- [ ] Maybe cement ?? https://content.minetest.net/packages/Linuxdirk/cement/
- [ ] Maybe skills ? https://content.minetest.net/packages/domtron%20vox/skillsframework/
- [ ] Give a look at https://content.minetest.net/packages/rubenwardy/ctf_pvp_engine/
- [ ] Maybe this chat filter https://content.minetest.net/packages/sofar/filter/
- [ ] Mayber a cannon mod ? https://content.minetest.net/packages/addi/cannons/
**** TODO [feature_AwardsFactionsLink] Could link awards with factions power
*We could link each achievement to the player's faction's power*
*Power can be seen as reputation*
@ -178,7 +187,7 @@ It's really fast. May be used on a website, to show the actual map.
**** Try mumble-link
- see https://github.com/chipgw/minetest-mumble-wrapper
**** TODO More bugfixes
CLOCK: [2019-02-28 jeu. 15:45]
CLOCK: [2019-02-28 jeu. 15:45]--[2019-02-28 jeu. 16:25] => 0:40
CLOCK: [2019-02-26 mar. 03:24]--[2019-02-26 mar. 03:40] => 0:16
- [X] Test singleplayer in death mesage
- [X] May use https://content.minetest.net/packages/Shara/server_news/
@ -186,22 +195,14 @@ It's really fast. May be used on a website, to show the actual map.
But the news.txt must be placed in the world directory, bad
- [X] Explain local changes
- [X] Remove welcome message mod
- [X] We should be able to create a hoe fom the right
- [ ] There is a shadow issue in the caves. Too much light
There was a mod for this in *random content*
- [ ] Maybe cement ?? https://content.minetest.net/packages/Linuxdirk/cement/
- [ ] Maybe skills ? https://content.minetest.net/packages/domtron%20vox/skillsframework/
- [ ] Give a look at https://content.minetest.net/packages/rubenwardy/ctf_pvp_engine/
- [ ] Maybe this chat filter https://content.minetest.net/packages/sofar/filter/
- [ ] Mayber a cannon mod ? https://content.minetest.net/packages/addi/cannons/
- [ ] Faction chest must be for faction only (no parcel needed)
- [ ] Try to find a protector mod, test it
- [ ] Make the protector/faction_protector available to all members of
the faction
- [ ] The faction spawn seems to be broken
- [ ] We should be able to create a hoe fom the right
Actually only stone:stone
empty:wood
Should also be wood:empty
- [ ] https://github.com/Sokomine/gates_long could be fine
- [ ] Maybe add a little UI for the faction as the inventoy tab
but formspec are difficult to use
@ -232,7 +233,9 @@ It's really fast. May be used on a website, to show the actual map.
- Don't forget to issue a *git pull* before
- [ ] May also test with the stable-0.4 branch
**** *Next stream test*
- [ ] New texture pack Picel Perfection
- [ ] New texture pack Pixel Perfection
- [ ] Replaced welcome_popup with server_news
- [ ] Now hoe can be created from right
**** DONE Improve minetestmapper
*Should show factions*
- [X] Clone this project and create a gitlab project as minetestmapper-factions

3
TODO
View File

@ -11,7 +11,8 @@ minetest-solebull - LGPL-2.1 - A PVP/faction game for minetest based on Cobalt.
* v0.0.2-5 (02 Jan. 2019 - ???) CLOC ???,???
- (6) Replace welcome_popup mod with server_news
- (7) Hoes can be crafted from the right
- Replace welcome_popup mod with server_news
- Better death message for singleplayer
- Fixed a heavy trade issue when item_stock is nil
- Add connected chest mod

View File

@ -56,6 +56,14 @@ farming.register_hoe = function(name, def)
{"", "group:stick", ""}
}
})
minetest.register_craft({
output = name:sub(2),
recipe = {
{"", def.material, def.material},
{"", "group:stick", ""},
{"", "group:stick", ""}
}
})
end
end

View File

@ -9,3 +9,7 @@ réinitialisée au prochain stream.
Merci et bon jeu!
---
Nouveautés :
- Les houe peuvent être craftées par la droite.