Browse Source

add server mgr note, echo manual bugfix instructions for awards

echo instructions for manually fixing awards bug that crashes minetest
master
poikilos 6 years ago
committed by Jacob Gustafson
parent
commit
50224b5beb
  1. 5
      README.md
  2. 13
      install-ENLIVEN.sh

5
README.md

@ -17,6 +17,11 @@ ENLIVEN is a subgame for minetest with the goals of providing immersion and less
* https://github.com/minetest-mods/chat_anticurse * https://github.com/minetest-mods/chat_anticurse
* https://github.com/minetest-mods/cozy (sitting and laying down player animations)--compare with emote https://github.com/minetest-mods/emote.git * https://github.com/minetest-mods/cozy (sitting and laying down player animations)--compare with emote https://github.com/minetest-mods/emote.git
#### node.js server manager
* capture log
* do not store redundant messages such as hunger_ng debug mode (see <https://pastebin.com/dDBg40vf>) or saving playereffects
* detect restarts (even if no 'separator'--see <https://pastebin.com/Jv3vkhFA>)
#### Possible Additions #### Possible Additions
* make a ruins mod that generates ruins with: statues, mese, stone with chipped paint or paintings, tan shale blocks with and without engravings * make a ruins mod that generates ruins with: statues, mese, stone with chipped paint or paintings, tan shale blocks with and without engravings
* SWITCH to https://github.com/minetest-mods/inspector (instead of metatools mod) * SWITCH to https://github.com/minetest-mods/inspector (instead of metatools mod)

13
install-ENLIVEN.sh

@ -1089,5 +1089,18 @@ if [ ! -d "$MT_MYGAME_MODS_PATH/dungeon_loot" ]; then
echo "No mod loot for dungeon_loot (nor forks of worldgen mods which should use it) are in ENLIVEN, so dungeon_loot from $mtgame_name is removed by this script for now (treasurer and relevant trm_* mods are used instead)." echo "No mod loot for dungeon_loot (nor forks of worldgen mods which should use it) are in ENLIVEN, so dungeon_loot from $mtgame_name is removed by this script for now (treasurer and relevant trm_* mods are used instead)."
fi fi
echo "INSTALLED t4im's technic FOR RECENT PATCH FOR corrected depends.txt..." echo "INSTALLED t4im's technic FOR RECENT PATCH FOR corrected depends.txt..."
echo "You must manually fix crash in awards unless it has been fixed:"
echo "see also <https://github.com/rubenwardy/awards/issues/59>"
echo "in $MT_MYGAME_MODS_PATH/awards/src/api_triggers.lua"
echo "change:"
echo "assert(player and player.is_player and player:is_player() and key)"
echo "to:"
echo " if (player and player.is_player and player:is_player() and key) then"
echo "later, put:"
echo " end"
echo "before:"
echo " end"
echo
echo " awards[\"notify_\" .. tname] = tdef.notify"
echo echo
echo echo

Loading…
Cancel
Save