From 50224b5beb144549bd1053bd731a4522f8222b7b Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Mon, 8 Oct 2018 19:46:42 -0400 Subject: [PATCH] add server mgr note, echo manual bugfix instructions for awards echo instructions for manually fixing awards bug that crashes minetest --- README.md | 5 +++++ install-ENLIVEN.sh | 13 +++++++++++++ 2 files changed, 18 insertions(+) diff --git a/README.md b/README.md index 1be7acd..ea6d0a2 100644 --- a/README.md +++ b/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/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 ) or saving playereffects + * detect restarts (even if no 'separator'--see ) + #### 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 * SWITCH to https://github.com/minetest-mods/inspector (instead of metatools mod) diff --git a/install-ENLIVEN.sh b/install-ENLIVEN.sh index 57758b0..432b118 100755 --- a/install-ENLIVEN.sh +++ b/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)." fi 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 " +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