Open aSemy opened 4 years ago
Further investigation has found that json config files are only created if login is disabled by setting login-enabled: false
in configuration.txt.
JsonFileClientUpdateComponent.java#298 only creates json config files if core. isLoginSupportEnabled()
is true, and this is only true if WebAuthManager.authmgr
is created in DynmapCore
. authmgr
is only created if login-enabled
is false (DynmapCore#408).
I don't understand why this is though. I'd like to see some documentation, and also a comment in the default configuration file to explain chat is only available if login is disabled.
this is still apparent in latest code, maybe @mikeprimm can explain as to why this is the case? thanks in advance.
I had the same issue when using SQLite + NGINX in Dynmap-3.5-beta-2-spigot.jar, The web map cannot be opened, and the browser shows that standalone/dynmap_config.json
cannot be obtained.
Indeed, if you set login-enabled: false
in configuration.txt, the plugin can generate json normally.
Please fix it, we need login functionality, thanks.
This is also happening to me. I'm using fabric and dynmap, and when login-enabled
is set to true
the map does not update and if it's the first start, the json files are also not generated.
Login functionality also does not work.
When i set it to false
everything works again.
I'm using nginx as an external web server with filesystem as storage.
Please fix this, i really need the login functionality to work!
I have a Minecraft 1.15.2 server. I've installed Dynmap v3.0-beta-10. I would like to host the Dynmap website as a standalone site on another machine that has nginx.
Most Dynmap files gets loaded when I visit the page hosted on the standalone nginx. However the configuration settings do not. When I load the standalone site I get a pop up error message: "Could not retrieve configuration: error".
I followed the guide on the wiki and it's mostly working, but the json files aren't being created.
JsonFileClientUpdateComponent
url
section to reference the json files, e.g.configuration: "standalone/dynmap_config.json?={timestamp}"
data/plugin/web
to the correct place in nginx.Dynmap configuration.txt
```yml # All paths in this configuration file are relative to Dynmap's data-folder: minecraft_server/plugins/dynmap/ # All map templates are defined in the templates directory # To use the HDMap very-low-res (2 ppb) map templates as world defaults, set value to vlowres # The definitions of these templates are in normal-vlowres.txt, nether-vlowres.txt, and the_end-vlowres.txt # To use the HDMap low-res (4 ppb) map templates as world defaults, set value to lowres # The definitions of these templates are in normal-lowres.txt, nether-lowres.txt, and the_end-lowres.txt # To use the HDMap hi-res (16 ppb) map templates (these can take a VERY long time for initial fullrender), set value to hires # The definitions of these templates are in normal-hires.txt, nether-hires.txt, and the_end-hires.txt # To use the HDMap low-res (4 ppb) map templates, with support for boosting resolution selectively to hi-res (16 ppb), set value to low_boost_hi # The definitions of these templates are in normal-low_boost_hi.txt, nether-low_boost_hi.txt, and the_end-low_boost_hi.txt # To use the HDMap hi-res (16 ppb) map templates, with support for boosting resolution selectively to vhi-res (32 ppb), set value to hi_boost_vhi # The definitions of these templates are in normal-hi_boost_vhi.txt, nether-hi_boost_vhi.txt, and the_end-hi_boost_vhi.txt # To use the HDMap hi-res (16 ppb) map templates, with support for boosting resolution selectively to xhi-res (64 ppb), set value to hi_boost_xhi # The definitions of these templates are in normal-hi_boost_xhi.txt, nether-hi_boost_xhi.txt, and the_end-hi_boost_xhi.txt deftemplatesuffix: hires # Map storage scheme: only uncomment one 'type' value # filetree: classic and default scheme: tree of files, with all map data under the directory indicated by 'tilespath' setting # sqlite: single SQLite database file (this can get VERY BIG), located at 'dbfile' setting (default is file dynmap.db in data directory) # mysql: MySQL database, at hostname:port in database, accessed via userid with password storage: # Filetree storage (standard tree of image files for maps) type: filetree # SQLite db for map storage (uses dbfile as storage location) #type: sqlite #dbfile: dynmap.db # MySQL DB for map storage (at 'hostname':'port' with flags "flags" in database 'database' using user 'userid' password 'password' and table prefix 'prefix') #type: mysql #hostname: localhost #port: 3306 #database: dynmap #userid: dynmap #password: dynmap #prefix: "" #flags: "?allowReconnect=true" components: - class: org.dynmap.ClientConfigurationComponent # - class: org.dynmap.InternalClientUpdateComponent # sendhealth: true # sendposition: true # allowwebchat: true # webchat-interval: 5 # hidewebchatip: false # trustclientname: false # includehiddenplayers: false # # (optional) if true, color codes in player display names are used # use-name-colors: false # # (optional) if true, player login IDs will be used for web chat when their IPs match # use-player-login-ip: true # # (optional) if use-player-login-ip is true, setting this to true will cause chat messages not matching a known player IP to be ignored # require-player-login-ip: false # # (optional) block player login IDs that are banned from chatting # block-banned-player-chat: true # # Require login for web-to-server chat (requires login-enabled: true) # webchat-requires-login: false # # If set to true, users must have dynmap.webchat permission in order to chat # webchat-permissions: false # # Limit length of single chat messages # chatlengthlimit: 256 # # # Optional - make players hidden when they are inside/underground/in shadows (#=light level: 0=full shadow,15=sky) # # hideifshadow: 4 # # # Optional - make player hidden when they are under cover (#=sky light level,0=underground,15=open to sky) # # hideifundercover: 14 # # # (Optional) if true, players that are crouching/sneaking will be hidden # hideifsneaking: false # # If true, player positions/status is protected (login with ID with dynmap.playermarkers.seeall permission required for info other than self) # protected-player-info: false # # If true, hide players with invisibility potion effects active # hide-if-invisiblity-potion: true # # If true, player names are not shown on map, chat, list # hidenames: false - class: org.dynmap.JsonFileClientUpdateComponent writeinterval: 1 sendhealth: true sendposition: true allowwebchat: true webchat-interval: 5 hidewebchatip: true includehiddenplayers: false use-name-colors: false use-player-login-ip: false require-player-login-ip: false block-banned-player-chat: true hideifshadow: 0 hideifundercover: 0 hideifsneaking: false # Require login for web-to-server chat (requires login-enabled: true) webchat-requires-login: true # If set to true, users must have dynmap.webchat permission in order to chat webchat-permissions: true # Limit length of single chat messages chatlengthlimit: 256 hide-if-invisiblity-potion: false hidenames: false - class: org.dynmap.SimpleWebChatComponent allowchat: true # If true, web UI users can supply name for chat using 'playername' URL parameter. 'trustclientname' must also be set true. allowurlname: false # Note: this component is needed for the dmarker commands, and for the Marker API to be available to other plugins - class: org.dynmap.MarkersComponent type: markers showlabel: false enablesigns: false # Default marker set for sign markers default-sign-set: markers # (optional) add spawn point markers to standard marker layer showspawn: true spawnicon: world spawnlabel: "Spawn" # (optional) layer for showing offline player's positions (for 'maxofflinetime' minutes after logoff) showofflineplayers: false offlinelabel: "Offline" offlineicon: offlineuser offlinehidebydefault: true offlineminzoom: 0 maxofflinetime: 30 # (optional) layer for showing player's spawn beds showspawnbeds: false spawnbedlabel: "Spawn Beds" spawnbedicon: bed spawnbedhidebydefault: true spawnbedminzoom: 0 spawnbedformat: "%name%'s bed" # (optional) show world border (vanilla 1.8+) showworldborder: true - class: org.dynmap.ClientComponent type: chat allowurlname: false - class: org.dynmap.ClientComponent type: chatballoon focuschatballoons: false - class: org.dynmap.ClientComponent type: chatbox showplayerfaces: true messagettl: 10 # Optional: set number of lines in scrollable message history: if set, messagettl is not used to age out messages #scrollback: 100 # Optional: set maximum number of lines visible for chatbox #visiblelines: 10 # Optional: send push button sendbutton: false - class: org.dynmap.ClientComponent type: playermarkers showplayerfaces: true showplayerhealth: true # If true, show player body too (only valid if showplayerfaces=true showplayerbody: false # Option to make player faces small - don't use with showplayerhealth smallplayerfaces: false # Optional - make player faces layer hidden by default hidebydefault: false # Optional - ordering priority in layer menu (low goes before high - default is 0) layerprio: 0 # Optional - label for player marker layer (default is 'Players') label: "Players" #- class: org.dynmap.ClientComponent # type: digitalclock - class: org.dynmap.ClientComponent type: link - class: org.dynmap.ClientComponent type: timeofdayclock showdigitalclock: true showweather: true # Mouse pointer world coordinate display - class: org.dynmap.ClientComponent type: coord label: "Location" hidey: false show-mcr: false # Note: more than one logo component can be defined #- class: org.dynmap.ClientComponent # type: logo # text: "Dynmap" # #logourl: "images/block_surface.png" # linkurl: "http://forums.bukkit.org/threads/dynmap.489/" # # Valid positions: top-left, top-right, bottom-left, bottom-right # position: bottom-right #- class: org.dynmap.ClientComponent # type: inactive # timeout: 1800 # in seconds (1800 seconds = 30 minutes) # redirecturl: inactive.html # #showmessage: 'You were inactive for too long.' #- class: org.dynmap.TestComponent # stuff: "This is some configuration-value" # Treat hiddenplayers.txt as a whitelist for players to be shown on the map? (Default false) display-whitelist: false # How often a tile gets rendered (in seconds). renderinterval: 1 # How many tiles on update queue before accelerate render interval renderacceleratethreshold: 60 # How often to render tiles when backlog is above renderacceleratethreshold renderaccelerateinterval: 0.2 # How many update tiles to work on at once (if not defined, default is 1/2 the number of cores) tiles-rendered-at-once: 2 # If true, use normal priority threads for rendering (versus low priority) - this can keep rendering # from starving on busy Windows boxes (Linux JVMs pretty much ignore thread priority), but may result # in more competition for CPU resources with other processes usenormalthreadpriority: true # Save and restore pending tile renders - prevents their loss on server shutdown or /reload saverestorepending: true # Save period for pending jobs (in seconds): periodic saving for crash recovery of jobs save-pending-period: 900 # Zoom-out tile update period - how often to scan for and process tile updates into zoom-out tiles (in seconds) zoomoutperiod: 30 # Control whether zoom out tiles are validated on startup (can be needed if zoomout processing is interrupted, but can be expensive on large maps) initial-zoomout-validate: true # Default delay on processing of updated tiles, in seconds. This can reduce potentially expensive re-rendering # of frequently updated tiles (such as due to machines, pistons, quarries or other automation). Values can # also be set on individual worlds and individual maps. tileupdatedelay: 30 # Tile hashing is used to minimize tile file updates when no changes have occurred - set to false to disable enabletilehash: true # Optional - hide ores: render as normal stone (so that they aren't revealed by maps) #hideores: true # Optional - enabled BetterGrass style rendering of grass and snow block sides #better-grass: true # Optional - enable smooth lighting by default on all maps supporting it (can be set per map as lighting option) smooth-lighting: true # Optional - use world provider lighting table (good for custom worlds with custom lighting curves, like nether) # false=classic Dynmap lighting curve use-brightness-table: true # Optional - render specific block IDs using the texures and models of another block ID: can be used to hide/disguise specific # blocks (e.g. make ores look like stone, hide chests) or to provide simple support for rendering unsupported custom blocks block-id-alias: # "14": 1 # "15": 1 # "16": 1 # Default image format for HDMaps (png, jpg, jpg-q75, jpg-q80, jpg-q85, jpg-q90, jpg-q95, jpg-q100) # Has no effect on maps with explicit format settings image-format: png # use-generated-textures: if true, use generated textures (same as client); false is static water/lava textures # correct-water-lighting: if true, use corrected water lighting (same as client); false is legacy water (darker) # transparent-leaves: if true, leaves are transparent (lighting-wise): false is needed for some Spout versions that break lighting on leaf blocks use-generated-textures: true correct-water-lighting: true transparent-leaves: true # ctm-support: if true, Connected Texture Mod (CTM) in texture packs is enabled (default) ctm-support: true # custom-colors-support: if true, Custom Colors in texture packs is enabled (default) custom-colors-support: true # Control loading of player faces (if set to false, skins are never fetched) #fetchskins: false # Control updating of player faces, once loaded (if faces are being managed by other apps or manually) #refreshskins: false # Customize URL used for fetching player skins (%player% is macro for name) skin-url: "http://skins.minecraft.net/MinecraftSkins/%player%.png" render-triggers: #- playermove #- playerjoin - blockplaced - blockbreak - leavesdecay - blockburn - chunkgenerated - blockformed - blockfaded - blockspread - pistonmoved - explosion #- blockfromto #- blockphysics - structuregrow - blockgrow #- blockredstone # Title for the web page - if not specified, defaults to the server's name (unless it is the default of 'Unknown Server') #webpage-title: "My Awesome Server Map" # The path where the tile-files are placed. #tilespath: web/tiles tilespath: "/dynmap/web/tiles" # The path where the web-files are located. #webpath: web webpath: "/dynmap/web" # The path were the /dynmapexp command exports OBJ ZIP files #exportpath: export exportpath: "/dynmap/export" # The network-interface the webserver will bind to (0.0.0.0 for all interfaces, 127.0.0.1 for only local access). # If not set, uses same setting as server in server.properties (or 0.0.0.0 if not specified) #webserver-bindaddress: 0.0.0.0 # The TCP-port the webserver will listen on. #webserver-port: 8123 # Maximum concurrent session on internal web server - limits resources used in Bukkit server max-sessions: 30 # Disables Webserver portion of Dynmap (Advanced users only) #disable-webserver: false disable-webserver: true # Enable/disable having the web server allow symbolic links (true=compatible with existing code, false=more secure (default)) allow-symlinks: true # Enable login support login-enabled: true #login-enabled: false # Require login to access website (requires login-enabled: true) login-required: false # Period between tile renders for fullrender, in seconds (non-zero to pace fullrenders, lessen CPU load) timesliceinterval: 0.0 # Maximum chunk loads per server tick (1/20th of a second) - reducing this below 90 will impact render performance, but also will reduce server thread load maxchunkspertick: 200 # Progress report interval for fullrender/radiusrender, in tiles. Must be 100 or greater progressloginterval: 100 # Parallel fullrender: if defined, number of concurrent threads used for fullrender or radiusrender # Note: setting this will result in much more intensive CPU use, some additional memory use. Caution should be used when # setting this to equal or exceed the number of physical cores on the system. #parallelrendercnt: 4 # Interval the browser should poll for updates. updaterate: 2000 # If nonzero, server will pause fullrender/radiusrender processing when 'fullrenderplayerlimit' or more users are logged in fullrenderplayerlimit: 0 # If nonzero, server will pause update render processing when 'updateplayerlimit' or more users are logged in updateplayerlimit: 0 # Target limit on server thread use - msec per tick per-tick-time-limit: 50 # If TPS of server is below this setting, update renders processing is paused update-min-tps: 18.0 # If TPS of server is below this setting, full/radius renders processing is paused fullrender-min-tps: 18.0 # If TPS of server is below this setting, zoom out processing is paused zoomout-min-tps: 18.0 showplayerfacesinmenu: true # Control whether players that are hidden or not on current map are grayed out (true=yes) grayplayerswhenhidden: true # Use player permissions to order player list: first to last, players are ordered by first permission listed that they have # That is, anyone with first listed permission goes before anyone with second, etc, with users with none of the nodes going last player-sort-permission-nodes: - bukkit.command.op # Set sidebaropened: 'true' to pin menu sidebar opened permanently, 'pinned' to default the sidebar to pinned, but allow it to unpin sidebaropened: pinned # Customized HTTP response headers - add 'id: value' pairs to all HTTP response headers (internal web server only) #http-response-headers: # Access-Control-Allow-Origin: "my-domain.com" # X-Custom-Header-Of-Mine: "MyHeaderValue" # Trusted proxies for web server - which proxy addresses are trusted to supply valid X-Forwarded-For fields trusted-proxies: - "127.0.0.1" - "0:0:0:0:0:0:0:1" # Join/quit message format for web chat: set to "" to disable notice on web UI joinmessage: "%playername% joined" quitmessage: "%playername% quit" spammessage: "You may only chat once every %interval% seconds." # format for messages from web: %playername% substitutes sender ID (typically IP), %message% includes text webmsgformat: "&color;2[WEB] %playername%: &color;f%message%" # Control whether layer control is presented on the UI (default is true) showlayercontrol: true # Enable checking for banned IPs via banned-ips.txt (internal web server only) check-banned-ips: false # Default selection when map page is loaded defaultzoom: 0 defaultworld: world defaultmap: flat # (optional) Zoom level and map to switch to when following a player, if possible #followzoom: 3 #followmap: surface # If true, make persistent record of IP addresses used by player logins, to support web IP to player matching persist-ids-by-ip: false # If true, map text to cyrillic cyrillic-support: false # If true, coordinates will be rounded round-coordinates: true # Messages to customize msg: maptypes: "Map Types" players: "Players" chatrequireslogin: "Chat Requires Login" chatnotallowed: "You are not permitted to send chat messages" hiddennamejoin: "Player joined" hiddennamequit: "Player quit" url: configuration: "standalone/dynmap_config.json?={timestamp}" update: "standalone/dynmap_{world}.json?={timestamp}" sendmessage: "standalone/sendmessage.php" login: "standalone/login.php" register: "standalone/register.php" tiles: "tiles/" markers: "tiles/" # URL for client configuration (only need to be tailored for proxies or other non-standard configurations) #url: # configuration URL # configuration: "standalone/configuration.php" # update URL # update: "standalone/update.php?world={world}&ts={timestamp}" # sendmessage URL # sendmessage: "standalone/sendmessage.php" # login URL # login: "standalone/login.php" # register URL # register: "standalone/register.php" # tiles base URL # tiles: "standalone/tiles.php?tile=" # markers base URL # markers: "standalone/markers.php?marker=" # Customization commands - allows scripts to be run before/after certain events custom-commands: image-updates: # Command run just before any image file is written or updated: run with single parameter with fully qualified file name preupdatecommand: "" # Command run just after any image file is written or updated: run with single parameter with fully qualified file name postupdatecommand: "" # Snapshot cache size, in chunks snapshotcachesize: 500 # Snapshot cache uses soft references (true), else weak references (false) soft-ref-cache: true # Set to true to enable verbose startup messages - can help with debugging map configuration problems # Set to false for a much quieter startup log verbose: true # Enables debugging. #debuggers: # - class: org.dynmap.debug.LogDebugger # Debug: dump blocks missing render data dump-missing-blocks: false # Have dynmap migrate old chunks to the new format for the current MC version (specifically, for migrating pre-1.13 chunks to 1.13 or 1.14). This is needed # in order to render chunks on an upgraded server (due to various bugs/limitations in CB/spigot 1.13+). This setting is NOT suggested to be enabled full time, # but only long enough to do a fullrender of a migrated world - it should be turned back off once worlds are migrated). It is EXPERIMENTAL, so be sure to backup # your worlds before running with this setting enabled (set to true) # #migrate-chunks: true debuggers: - class: "org.dynmap.debug.LogDebugger" ```As you can see in the directory tree there's no json files in the standalone folder. However the php files, e.g.
updates_world.php
, are created.Output of 'tree'
``` /mnt/mcmods/dynmap/ ├── export └── web ├── config.js ├── css │ ├── dynmap_style.css │ ├── embedded_example.css │ ├── images │ │ ├── layers.png │ │ ├── link.png │ │ ├── marker-icon.png │ │ ├── marker-icon@2x.png │ │ ├── marker-shadow.png │ │ ├── marker.png │ │ ├── popup-close.png │ │ ├── zoom-in.png │ │ └── zoom-out.png │ ├── leaflet.css │ ├── leaflet.ie.css │ ├── override_example.css │ ├── regions.css │ └── standalone.css ├── gettiles.php ├── images │ ├── BiomeKey.png │ ├── armor.png │ ├── armor_depleted.png │ ├── blank.png │ ├── block_biome.png │ ├── block_cave.png │ ├── block_flat.png │ ├── block_nether.png │ ├── block_other.png │ ├── block_skylands.png │ ├── block_surface.png │ ├── block_the_end.png │ ├── book.png │ ├── cave_off.png │ ├── cave_on.png │ ├── chat_bubble.png │ ├── chat_cursor.png │ ├── clock_day.png │ ├── clock_night.png │ ├── compass.png │ ├── compass_E.png │ ├── compass_N.png │ ├── compass_NE.png │ ├── compass_NW.png │ ├── compass_SW.png │ ├── compass_W.png │ ├── compass_alt.png │ ├── compass_flat.png │ ├── dynmap.ico │ ├── follow_off.png │ ├── follow_on.png │ ├── heart.png │ ├── heart_depleted.png │ ├── home.png │ ├── list_off.png │ ├── list_on.png │ ├── moon.png │ ├── player.png │ ├── player_death.png │ ├── player_face.png │ ├── player_follow_off.png │ ├── player_follow_on.gif │ ├── player_follow_on.png │ ├── player_travel.png │ ├── scrolldown.png │ ├── scrollup.png │ ├── server.png │ ├── sidebar_hint.png │ ├── sign.png │ ├── sign_home.png │ ├── sign_sign.png │ ├── sign_sign_alt.png │ ├── sign_warp.png │ ├── spawn.png │ ├── sun.png │ ├── warp.png │ ├── weather_stormy.png │ ├── weather_stormy_day.png │ ├── weather_stormy_night.png │ ├── weather_sunny.png │ ├── weather_sunny_day.png │ ├── weather_sunny_night.png │ ├── weather_thunder.png │ ├── weather_thunder_day.png │ ├── weather_thunder_night.png │ ├── window_close.png │ ├── window_close_hover.png │ ├── window_open.png │ ├── window_pinned.png │ ├── window_pinned_hover.png │ ├── window_unpinned.png │ ├── zoom_in.png │ └── zoom_out.png ├── inactive.html ├── index.html ├── js │ ├── chat.js │ ├── chatballoon.js │ ├── chatbox.js │ ├── coord.js │ ├── custommarker.js │ ├── digitalclock.js │ ├── dynmaputils.js │ ├── hdmap.js │ ├── inactive.js │ ├── jquery-1.11.0.js │ ├── jquery.json.js │ ├── jquery.mousewheel.js │ ├── leaflet.js │ ├── link.js │ ├── logo.js │ ├── map.js │ ├── markers.js │ ├── minecraft.js │ ├── playermarkers.js │ ├── projectiontest.js │ ├── regions.js │ ├── sidebarmarkers.js │ ├── sidebarutils.js │ └── timeofdayclock.js ├── login.html ├── robots.txt ├── standalone │ ├── MySQL_access.php │ ├── MySQL_configuration.php │ ├── MySQL_funcs.php │ ├── MySQL_getlogin.php │ ├── MySQL_login.php │ ├── MySQL_markers.php │ ├── MySQL_register.php │ ├── MySQL_sendmessage.php │ ├── MySQL_tiles.php │ ├── MySQL_update.php │ ├── SQLite_markers.php │ ├── SQLite_tiles.php │ ├── config.js │ ├── configuration.php │ ├── dynmap_access.php │ ├── dynmap_config.php │ ├── dynmap_login.php │ ├── login.php │ ├── markers.php │ ├── register.php │ ├── sendmessage.php │ ├── tiles.php │ ├── update.php │ ├── updates_world.php │ ├── updates_world_nether.php │ └── updates_world_the_end.php ├── tiles │ └── _markers_ │ ├── anchor.png │ ├── bank.png │ ├── basket.png │ ├── bed.png │ ├── beer.png │ ├── bighouse.png │ ├── blueflag.png │ ├── bomb.png │ ├── bookshelf.png │ ├── bricks.png │ ├── bronzemedal.png │ ├── bronzestar.png │ ├── building.png │ ├── cake.png │ ├── camera.png │ ├── cart.png │ ├── caution.png │ ├── chest.png │ ├── church.png │ ├── coins.png │ ├── comment.png │ ├── compass.png │ ├── construction.png │ ├── cross.png │ ├── cup.png │ ├── cutlery.png │ ├── default.png │ ├── diamond.png │ ├── dog.png │ ├── door.png │ ├── down.png │ ├── drink.png │ ├── exclamation.png │ ├── factory.png │ ├── fire.png │ ├── flower.png │ ├── gear.png │ ├── goldmedal.png │ ├── goldstar.png │ ├── greenflag.png │ ├── hammer.png │ ├── heart.png │ ├── house.png │ ├── key.png │ ├── king.png │ ├── left.png │ ├── lightbulb.png │ ├── lighthouse.png │ ├── lock.png │ ├── marker_world.json │ ├── marker_world_nether.json │ ├── marker_world_the_end.json │ ├── minecart.png │ ├── offlineuser.png │ ├── orangeflag.png │ ├── pin.png │ ├── pinkflag.png │ ├── pirateflag.png │ ├── pointdown.png │ ├── pointleft.png │ ├── pointright.png │ ├── pointup.png │ ├── portal.png │ ├── purpleflag.png │ ├── queen.png │ ├── redflag.png │ ├── right.png │ ├── ruby.png │ ├── scales.png │ ├── shield.png │ ├── sign.png │ ├── silvermedal.png │ ├── silverstar.png │ ├── skull.png │ ├── star.png │ ├── sun.png │ ├── temple.png │ ├── theater.png │ ├── tornado.png │ ├── tower.png │ ├── tree.png │ ├── truck.png │ ├── up.png │ ├── walk.png │ ├── warning.png │ ├── world.png │ ├── wrench.png │ └── yellowflag.png ├── up.aspx ├── up.php └── version.js 9 directories, 236 files ```Minecraft is being run through Docker. Here's my docker-compose file. In case it's relevant, data is shared between the two machines using NFS. As far as I can tell this is working correctly.
docker-compose.yml
```yml version: '3.5' services: mc: image: itzg/minecraft-server container_name: mc_server environment: EULA: "true" TYPE: PAPER VERSION: 1.15.2 OPS: "xxx" SERVER_PORT: 25565 ENABLE_RCON: "true" RCON_PASSWORD: "xxx" RCON_PORT: 28016 INIT_MEMORY: "14G" MAX_MEMORY: "14G" command: --noconsole ports: - "25565:25565" # minecraft - "8123:8123" # dynmap - "9225:9225" # prometheus # - "28016:28016" # rcon volumes: - "./data:/data" - "/mnt/mcmods/dynmap:/dynmap:rw" - "/mnt/mcmods/backup:/backup:rw" restart: "always" rcon: image: itzg/rcon container_name: mc_rcon depends_on: - "mc" ports: - "4326:4326" # web-ui - "4327:4327" volumes: - "./rcon:/opt/rcon-web-admin/db" restart: "always" ```No errors appear in the log file.
Minecraft log
``` Attaching to mc_rcon, mc_server [33mmc_server |[0m [init] Running as uid=1000 gid=1000 with /data as 'drwxrwxr-x 10 1000 1000 4096 Apr 5 19:48 /data' [33mmc_server |[0m [init] Resolved version given 1.15.2 into 1.15.2 [33mmc_server |[0m [init] Resolving type given PAPER [33mmc_server |[0m [init] server.properties already created, skipping [33mmc_server |[0m [init] Setting/adding ops [33mmc_server |[0m [init] log4j2.xml already created, skipping [33mmc_server |[0m [init] Checking for JSON files. [33mmc_server |[0m [init] Copying any mods over... [33mmc_server |[0m [init] Copying any Bukkit plugins over... [33mmc_server |[0m [init] Setting initial memory to 14G and max to 14G [33mmc_server |[0m [init] Starting the Minecraft server... [33mmc_server |[0m System Info: Java 1.8 (OpenJDK 64-Bit Server VM 25.212-b04) Host: Linux 4.19.0-8-cloud-amd64 (amd64) [33mmc_server |[0m Loading libraries, please wait... [33mmc_server |[0m [20:20:49] [Server thread/INFO]: Starting minecraft server version 1.15.2 [33mmc_server |[0m [20:20:49] [Server thread/INFO]: Loading properties [33mmc_server |[0m [20:20:49] [Server thread/INFO]: This server is running Paper version git-Paper-146 (MC: 1.15.2) (Implementing API version 1.15.2-R0.1-SNAPSHOT) [33mmc_server |[0m [20:20:49] [Server thread/INFO]: Console input is disabled due to --noconsole command argument [33mmc_server |[0m [20:20:49] [Server thread/INFO]: Server Ping Player Sample Count: 12 [33mmc_server |[0m [20:20:49] [Server thread/INFO]: Using 4 threads for Netty based IO [33mmc_server |[0m [20:20:49] [Server thread/INFO]: Debug logging is disabled [33mmc_server |[0m [20:20:49] [Server thread/INFO]: Default game type: SURVIVAL [33mmc_server |[0m [20:20:49] [Server thread/INFO]: Generating keypair [33mmc_server |[0m [20:20:50] [Server thread/INFO]: Starting Minecraft server on *:25565 [33mmc_server |[0m [20:20:50] [Server thread/INFO]: Using epoll channel type [33mmc_server |[0m [20:20:51] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug! [33mmc_server |[0m [20:20:58] [Server thread/WARN]: Legacy plugin dynmap v3.0-beta-10-257 does not specify an api-version. [33mmc_server |[0m [20:20:59] [Server thread/WARN]: Legacy plugin PrometheusExporter v2.1.0 does not specify an api-version. [33mmc_server |[0m [20:20:59] [Server thread/INFO]: Loading dynmap v3.0-beta-10-257 [33mmc_server |[0m [20:20:59] [Server thread/INFO]: version=git-Paper-146 (MC: 1.15.2) [33mmc_server |[0m [20:20:59] [Server thread/INFO]: Unload queue not found - default to unload all chunks [33mmc_server |[0m [20:20:59] [Server thread/INFO]: inhabitedTicks field not found - inhabited shader not functional [33mmc_server |[0m [20:20:59] [Server thread/INFO]: Mod Support API available [33mmc_server |[0m [20:20:59] [Server thread/INFO]: Loading PrometheusExporter v2.1.0 [33mmc_server |[0m [20:20:59] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it [33mmc_server |[0m [20:21:00] [Server thread/INFO]: Preparing level "world" [33mmc_server |[0m [20:21:00] [Server thread/INFO]: Reloading ResourceManager: Default, bukkit [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Loaded 6 recipes [33mmc_server |[0m [20:21:32] [Server thread/INFO]: -------- World Settings For [world] -------- [33mmc_server |[0m [20:21:32] [Server thread/INFO]: View Distance: 15 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Item Merge Radius: 2.5 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Item Despawn Rate: 6000 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: false [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Cactus Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Cane Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Melon Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Mushroom Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Pumpkin Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Sapling Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Beetroot Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Carrot Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Potato Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Wheat Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: NetherWart Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Vine Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Cocoa Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Bamboo Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: SweetBerry Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Kelp Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Experience Merge Radius: 3.0 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Mob Spawn Range: 8 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 Slime: 987234911 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Max TNT Explosions: 100 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms [33mmc_server |[0m [20:21:32] [Server thread/INFO]: -------- World Settings For [world_nether] -------- [33mmc_server |[0m [20:21:32] [Server thread/INFO]: View Distance: 15 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Item Merge Radius: 2.5 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Item Despawn Rate: 6000 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: false [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Cactus Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Cane Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Melon Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Mushroom Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Pumpkin Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Sapling Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Beetroot Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Carrot Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Potato Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Wheat Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: NetherWart Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Vine Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Cocoa Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Bamboo Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: SweetBerry Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Kelp Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Experience Merge Radius: 3.0 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Mob Spawn Range: 8 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 Slime: 987234911 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Max TNT Explosions: 100 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms [33mmc_server |[0m [20:21:32] [Server thread/INFO]: -------- World Settings For [world_the_end] -------- [33mmc_server |[0m [20:21:32] [Server thread/INFO]: View Distance: 15 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Item Merge Radius: 2.5 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Item Despawn Rate: 6000 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: false [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Cactus Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Cane Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Melon Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Mushroom Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Pumpkin Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Sapling Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Beetroot Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Carrot Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Potato Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Wheat Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: NetherWart Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Vine Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Cocoa Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Bamboo Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: SweetBerry Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Kelp Growth Modifier: 100% [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Experience Merge Radius: 3.0 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Mob Spawn Range: 8 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 Slime: 987234911 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Max TNT Explosions: 100 [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms [33mmc_server |[0m [20:21:32] [Server thread/INFO]: Preparing start region for dimension 'world'/minecraft:overworld [33mmc_server |[0m [20:21:33] [Server thread/INFO]: Preparing spawn area: 0% [33mmc_server |[0m [20:21:33] [Server thread/INFO]: Preparing spawn area: 0% [33mmc_server |[0m [20:21:34] [Server thread/INFO]: Preparing spawn area: 1% [33mmc_server |[0m [20:21:34] [Server thread/INFO]: Preparing spawn area: 18% [33mmc_server |[0m [20:21:34] [Server thread/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:35] [Server thread/INFO]: Loaded 441 spawn chunks for world world [33mmc_server |[0m [20:21:35] [Server thread/INFO]: Time elapsed: 2474 ms [33mmc_server |[0m [20:21:35] [Server thread/INFO]: Preparing start region for dimension 'world_nether'/minecraft:the_nether [33mmc_server |[0m [20:21:35] [Server thread/INFO]: Preparing spawn area: 0% [33mmc_server |[0m [20:21:35] [Server thread/INFO]: Preparing spawn area: 31% [33mmc_server |[0m [20:21:36] [Server-Worker-1/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:36] [Server-Worker-2/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:37] [Server thread/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:37] [Server-Worker-2/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:38] [Server thread/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:38] [Server-Worker-2/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:39] [Server-Worker-2/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:39] [Server-Worker-1/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:40] [Server thread/INFO]: Loaded 441 spawn chunks for world world_nether [33mmc_server |[0m [20:21:40] [Server thread/INFO]: Time elapsed: 4602 ms [33mmc_server |[0m [20:21:40] [Server thread/INFO]: Preparing start region for dimension 'world_the_end'/minecraft:the_end [33mmc_server |[0m [20:21:40] [Server thread/INFO]: Preparing spawn area: 0% [33mmc_server |[0m [20:21:40] [Server-Worker-2/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:41] [Server-Worker-1/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:41] [Server-Worker-2/INFO]: Preparing spawn area: 100% [33mmc_server |[0m [20:21:41] [Server thread/INFO]: Loaded 441 spawn chunks for world world_the_end [33mmc_server |[0m [20:21:41] [Server thread/INFO]: Time elapsed: 1724 ms [33mmc_server |[0m [20:21:41] [Server thread/INFO]: Enabling dynmap v3.0-beta-10-257* [33mmc_server |[0m [20:21:42] [Server thread/INFO]: Using Bukkit Permissions (superperms) for access control [33mmc_server |[0m [20:21:42] [Server thread/INFO]: Web interface permissions only available for online users [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Mod Support processing completed [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Loading models... [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Loaded 892 block models from models_1.txt [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Loading texture mappings... [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Loaded 1042 texture mappings from texture_1.txt [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=west,short=true,type=normal] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=west,short=true,type=sticky] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=west,short=false,type=normal] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=west,short=false,type=sticky] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=up,short=true,type=normal] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=up,short=true,type=sticky] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=up,short=false,type=normal] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=up,short=false,type=sticky] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=down,short=true,type=normal] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=down,short=true,type=sticky] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=down,short=false,type=normal] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:piston_head[facing=down,short=false,type=sticky] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=0] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=1] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=2] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=3] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=4] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=5] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=6] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=7] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=8] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=9] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=10] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=11] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=12] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=13] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=14] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_banner[rotation=15] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:white_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:orange_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:magenta_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_blue_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:yellow_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:lime_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:pink_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:gray_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:light_gray_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:cyan_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:purple_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:blue_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:brown_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:green_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:red_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_wall_banner[facing=north] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_wall_banner[facing=south] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_wall_banner[facing=west] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Block minecraft:black_wall_banner[facing=east] - no texture mapping [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Loading templates... [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Loading shaders... [33mmc_server |[0m [20:21:43] [Server thread/INFO]: Loading colors from 'plugins/dynmap/colorschemes/default.txt'... [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loading colors from 'plugins/dynmap/colorschemes/ovocean.txt'... [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loading colors from 'plugins/dynmap/colorschemes/flames.txt'... [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loading colors from 'plugins/dynmap/colorschemes/sk89q.txt'... [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loading colors from 'plugins/dynmap/colorschemes/amidst.txt'... [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loaded 25 shaders. [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loading perspectives... [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loaded 82 perspectives. [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loading lightings... [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loaded 14 lightings. [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Web server is permitting symbolic links [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loaded 11 components. [33mmc_server |[0m [20:21:44] [Server thread/INFO]: version 3.0-beta-10-257 is enabled - core version 3.0-beta-10-257 [33mmc_server |[0m [20:21:44] [Server thread/INFO]: For support, visit https://forums.dynmap.us [33mmc_server |[0m [20:21:44] [Server thread/INFO]: To report or track bugs, visit https://github.com/webbukkit/dynmap/issues [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Using environment as template: normal-hires [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Configuration of world world [33mmc_server |[0m [20:21:44] [Server thread/INFO]: name: world [33mmc_server |[0m [20:21:44] [Server thread/INFO]: title: world [33mmc_server |[0m [20:21:44] [Server thread/INFO]: enabled: true [33mmc_server |[0m [20:21:44] [Server thread/INFO]: extrazoomout: 2 [33mmc_server |[0m [20:21:44] [Server thread/INFO]: maps: [{class=org.dynmap.hdmap.HDMap, name=flat, title=Flat, prefix=flat, perspective=iso_S_90_lowres, shader=stdtexture, lighting=shadows, mapzoomin=1}, {class=org.dynmap.hdmap.HDMap, name=surface, title=Surface, prefix=t, perspective=iso_SE_30_hires, shader=stdtexture, lighting=shadows, mapzoomin=1}, {class=org.dynmap.hdmap.HDMap, name=cave, title=Cave, prefix=ct, perspective=iso_SE_60_lowres, shader=cave, lighting=default, mapzoomin=3}] [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loading maps of world 'world'... [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loaded 3 maps of world 'world'. [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Using environment as template: nether-hires [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Configuration of world world_nether [33mmc_server |[0m [20:21:44] [Server thread/INFO]: name: world_nether [33mmc_server |[0m [20:21:44] [Server thread/INFO]: title: world_nether [33mmc_server |[0m [20:21:44] [Server thread/INFO]: enabled: true [33mmc_server |[0m [20:21:44] [Server thread/INFO]: extrazoomout: 2 [33mmc_server |[0m [20:21:44] [Server thread/INFO]: maps: [{class=org.dynmap.hdmap.HDMap, name=flat, title=Flat, prefix=flat, perspective=iso_S_90_lowres, shader=stdtexture, lighting=nethershadows, background=#300806, mapzoomin=1}, {class=org.dynmap.hdmap.HDMap, name=nether, title=Surface, prefix=nt, perspective=iso_SE_30_hires, shader=stdtexture, lighting=nethershadows, background=#300806, mapzoomin=1}] [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loading maps of world 'world_nether'... [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loaded 2 maps of world 'world_nether'. [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Using environment as template: the_end-hires [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Configuration of world world_the_end [33mmc_server |[0m [20:21:44] [Server thread/INFO]: name: world_the_end [33mmc_server |[0m [20:21:44] [Server thread/INFO]: title: world_the_end [33mmc_server |[0m [20:21:44] [Server thread/INFO]: enabled: true [33mmc_server |[0m [20:21:44] [Server thread/INFO]: extrazoomout: 2 [33mmc_server |[0m [20:21:44] [Server thread/INFO]: maps: [{class=org.dynmap.hdmap.HDMap, name=flat, title=Flat, prefix=flat, perspective=iso_S_90_lowres, shader=stdtexture, lighting=brightnight, mapzoomin=1}, {class=org.dynmap.hdmap.HDMap, name=the_end, title=Surface, prefix=st, perspective=iso_SE_30_hires, shader=stdtexture, lighting=brightnight, mapzoomin=1}] [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loading maps of world 'world_the_end'... [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Loaded 2 maps of world 'world_the_end'. [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Enabled [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Enabling PrometheusExporter v2.1.0* [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Logging initialized @64980ms to org.eclipse.jetty.util.log.Slf4jLog [33mmc_server |[0m [20:21:44] [Server thread/INFO]: jetty-9.4.25.v20191220; built: 2019-12-20T17:00:00.294Z; git: a9729c7e7f33a459d2616a8f9e9ba8a90f432e95; jvm 1.8.0_212-b04 [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Started ServerConnector@e2f7d7{HTTP/1.1,[http/1.1]}{0.0.0.0:9225} [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Started @65125ms [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Started Prometheus metrics endpoint at: 0.0.0.0:9225 [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Done (44.382s)! For help, type "help" [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Starting remote control listener [33mmc_server |[0m [20:21:44] [RCON Listener #1/INFO]: RCON running on 0.0.0.0:28016 [33mmc_server |[0m [20:21:44] [Server thread/INFO]: Timings Reset ```It's annoying because at one point I did see the
.json
files get created in thestandalone
folder. But not any more! It's a real mystery. Do I have something misconfigured?