Skip to content

Commit

Permalink
BREAKING: Drop support of BepInEx because isn't working for 7 days to…
Browse files Browse the repository at this point in the history
… die (#212)

Fix #200
  • Loading branch information
vinanrra authored Nov 22, 2023
1 parent bdfe39e commit 312f3bb
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 119 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ ENV PUID=1000 PGID=1000 \
UNDEAD_LEGACY=no UNDEAD_LEGACY_VERSION=stable UNDEAD_LEGACY_UPDATE=no UNDEAD_LEGACY_URL=False \
ENZOMBIES=no ENZOMBIES_ADDON_SNUFKIN=no ENZOMBIES_ADDON_ROBELOTO=no ENZOMBIES_ADDON_NONUDES=no ENZOMBIES_UPDATE=no \
CPM=no CPM_UPDATE=no \
BEPINEX=no BEPINEX_UPDATE=no \
CHANGE_CONFIG_DIR_OWNERSHIP=YES \
DARKNESS_FALLS_URL=False DARKNESS_FALLS=no DARKNESS_FALLS_UPDATE=no

Expand Down
4 changes: 0 additions & 4 deletions docs/mods_support.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ Remember that some mods can't be installed with others, if you have problems wit
- Environments:
- CPM
- CPM_UPDATE
- [BepInEz](https://github.com/BepInEx/BepInEx)
- Environments:
- BEPINEX
- BEPINEX_UPDATE
- [Darkness Falls](https://community.7daystodie.com/topic/4941-darkness-falls-they-mostly-come-out-at-night/)
- Environments:
- DARKNESS_FALLS
Expand Down
7 changes: 0 additions & 7 deletions docs/parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,6 @@
| `CPM=NO` | Install [CPM](https://docs.csmm.app/en/cpm/), CPM version will be installed according to 7 days to die branch version, this will also install Allocs Fixes **optional** | YES, NO |
| `CPM_UPDATE=NO` | Update [CPM](https://docs.csmm.app/en/cpm/), CPM on every server start, depending of your 7 days to die version, requiere UPDATE_MODS=YES **optional** | YES, NO |

### BepInEx

| Parameter | Function | Values |
| --- | --- | :---: |
| `BEPINEX=NO` | Install [BEPINEX](https://github.com/BepInEx/BepInEx), latest BEPINEX version will be installed**optional** | YES, NO |
| `BEPINEX_UPDATE=NO` | Update [BEPINEX](https://github.com/BepInEx/BepInEx), BEPINEX on every server start, requiere UPDATE_MODS=YES **optional** | YES, NO |

### START MODES

| START_MODE | Information |
Expand Down
4 changes: 0 additions & 4 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ docker run -d \
-e ENZOMBIES_UPDATE=NO \
-e CPM=NO \
-e CPM_UPDATE=NO \
-e BEPINEX=NO \
-e BEPINEX_UPDATE=NO \
-e BACKUP=NO \
-e MONITOR=NO \
-e PUID=1000 \
Expand Down Expand Up @@ -80,8 +78,6 @@ services:
- ENZOMBIES_UPDATE=NO # Optional - Update EnZombies mod and addons before server start
- CPM=NO # Optional - CSMM Patron's Mod (CPM)
- CPM_UPDATE=NO # Optional - Update CPM before server start
- BEPINEX=NO # Optional - BepInEx
- BEPINEX_UPDATE=NO # Optional - Update BepInEx before server start
- BACKUP=NO # Optional - Backup server at 5 AM
- MONITOR=NO # Optional - Keeps server up if crash
volumes:
Expand Down
87 changes: 0 additions & 87 deletions scripts/Mods/bepinex.sh

This file was deleted.

4 changes: 0 additions & 4 deletions scripts/Mods/mods_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,3 @@ if [ "${ENZOMBIES,,}" == 'yes' ]
source $scriptsDir/Mods/enZombies.sh
fi

if [ "${BEPINEX,,}" == 'yes' ] && [ "${UNDEAD_LEGACY,,}" == 'no' ]
then
source $scriptsDir/Mods/bepinex.sh
fi
5 changes: 0 additions & 5 deletions scripts/Mods/mods_update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,4 @@ if [ "${ENZOMBIES,,}" == 'yes' ] && [ "${ENZOMBIES_UPDATE,,}" == 'yes' ]
source $scriptsDir/Mods/enZombies.sh
fi

if [ "${BEPINEX,,}" == 'yes' ] && [ "${BEPINEX_UPDATE,,}" == 'yes' ] && [ "${UNDEAD_LEGACY,,}" == 'no' ]
then
source $scriptsDir/Mods/bepinex.sh
fi

echo "[INFO] Updating/Installing mods finished"
7 changes: 0 additions & 7 deletions scripts/Mods/undead_legacy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,6 @@ if [ "${MIRROR_EXT}" == 'tar' ]; then
unzip -q "${MIRROR_FILE}" -d undeadlegacy-temp
fi

if [ -d "$SERVERFILES_FOLDER/BepInEx" ]
then
echo "[Undead Legacy] Removing existing BepInEx, because Undead Legacy already come with BepInEx"
rm -rf $SERVERFILES_FOLDER/BepInEx
rm -rf $SERVERFILES_FOLDER/doorstop_libs
fi

echo "[Undead Legacy] Installing mod"

if [ "${UNDEAD_LEGACY_VERSION}" == 'exp' ]; then
Expand Down

0 comments on commit 312f3bb

Please sign in to comment.