Dynmap change, no OpenInv conf
OpenInv config contains player settings Art from the main RP world removed from Dynmap
This commit is contained in:
parent
6d4a6e5bd6
commit
49a0c8f9ac
4 changed files with 13 additions and 4 deletions
|
@ -13,7 +13,7 @@ storage:
|
||||||
method: sqlite
|
method: sqlite
|
||||||
# Requires Mysql.
|
# Requires Mysql.
|
||||||
mysql-username: root
|
mysql-username: root
|
||||||
mysql-password: ''
|
mysql-password: 'NOPE'
|
||||||
mysql-hostname: localhost:3306
|
mysql-hostname: localhost:3306
|
||||||
mysql-database: minecraft
|
mysql-database: minecraft
|
||||||
mysql-table-prefix: jobs_
|
mysql-table-prefix: jobs_
|
||||||
|
|
|
@ -445,7 +445,7 @@ plugin:
|
||||||
dbname: towny
|
dbname: towny
|
||||||
table_prefix: towny_
|
table_prefix: towny_
|
||||||
username: root
|
username: root
|
||||||
password: 'NOPE'
|
password: NOPE
|
||||||
ssl: 'false'
|
ssl: 'false'
|
||||||
|
|
||||||
# Flatfile backup settings.
|
# Flatfile backup settings.
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
# Definitions of a world made here will superecede any world definition with the same name in configuration.txt
|
# Definitions of a world made here will superecede any world definition with the same name in configuration.txt
|
||||||
# Deleting this file will result in a fresh copy being produced by dynmap.jar on the next startup.
|
# Deleting this file will result in a fresh copy being produced by dynmap.jar on the next startup.
|
||||||
#
|
#
|
||||||
worlds:
|
#worlds:
|
||||||
# Worlds can be handled by templates, based on world type
|
# Worlds can be handled by templates, based on world type
|
||||||
# You can override the properties of the template by specifying them in this section
|
# You can override the properties of the template by specifying them in this section
|
||||||
# for example 'Title: "My Awesome World"'
|
# for example 'Title: "My Awesome World"'
|
||||||
|
@ -129,3 +129,12 @@ worlds:
|
||||||
- name: world
|
- name: world
|
||||||
enabled: true
|
enabled: true
|
||||||
template: normal-vlowres #Disabled by default
|
template: normal-vlowres #Disabled by default
|
||||||
|
|
||||||
|
hiddenlimits:
|
||||||
|
- x0: 430
|
||||||
|
z0: 2850
|
||||||
|
x1: 600
|
||||||
|
z1: 3000
|
||||||
|
hidestyle: stone
|
||||||
|
extrazoomout: 2
|
||||||
|
bigworld: true
|
||||||
|
|
|
@ -4,7 +4,7 @@ git rm --cached -rfq '*/*' # Unstage everything in folders in case a plugin got
|
||||||
readarray -t plugins < plugins.txt # -t removes trailing newlines
|
readarray -t plugins < plugins.txt # -t removes trailing newlines
|
||||||
for i in "${plugins[@]}"
|
for i in "${plugins[@]}"
|
||||||
do
|
do
|
||||||
if [ -d $i -a $i != "DiscordPlugin" ]; then
|
if [ -d $i -a $i != "DiscordPlugin" -a $i != "OpenInv" ]; then
|
||||||
find $i -name "config.yml" -exec git add -f '{}' \; # All files are ignored, need to force add
|
find $i -name "config.yml" -exec git add -f '{}' \; # All files are ignored, need to force add
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue