Issue - local queue won't play

Hi, I recently tried installing Mopidy on my MPD server.
I disabled the old standalone MPD service before installing.
I logged into my server with some mpd clients on my other computers.
I could see music and load it into the queue, but it would not play.
As in I would press Play and nothing would happen. The scrubber won’t move, so it’s not an issue with speakers being unplugged or something.
The music directory has r/w access for all users.
I’m not sure what I’m doing wrong here. Any help?

Here is a copy of my config:

[core]
cache_dir = /var/cache/mopidy
config_dir = /etc/mopidy
data_dir = /var/lib/mopidy
max_tracklist_length = 10000

[logging]
color = true
console_format = %(levelname)-8s %(message)s
debug_format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %(name)s\n %(message)s
debug_file = /var/log/mopidy/mopidy-debug.log
config_file = /etc/mopidy/logging.conf

[audio]
mixer = software
mixer_volume =
output = autoaudiosink
buffer_time =

[proxy]
scheme =
hostname =
port =
username =
password =

[local-sqlite]
enabled = true
directories =
Albums local:directory?type=album
Artists local:directory?type=artist
Composers local:directory?type=artist&role=composer
Genres local:directory?type=genre
Performers local:directory?type=artist&role=performer
Release Years local:directory?type=date&format=%25Y
Tracks local:directory?type=track
Last Week’s Updates local:directory?max-age=604800
Last Month’s Updates local:directory?max-age=2592000
timeout = 10
use_album_mbid_uri = true
use_artist_mbid_uri = false
use_artist_sortname = true

[youtube]
enabled = true

[soundcloud]
enabled = true
explore_songs = 25
auth_token = ********

[mpd]
enabled = true
hostname = 192.168.254.12
port = 6600
password = ********
max_connections = 20
connection_timeout = 60
zeroconf = Mopidy MPD server on Wander
command_blacklist =
listall
listallinfo
default_playlist_scheme = m3u

[http]
enabled = true
hostname = 127.0.0.1
port = 6680
static_dir =
zeroconf = Mopidy HTTP server on $hostname

[stream]
enabled = true
protocols =
http
https
mms
rtmp
rtmps
rtsp
metadata_blacklist =
timeout = 5000

[m3u]
enabled = true
base_dir = $XDG_MUSIC_DIR
default_encoding = latin-1
default_extension = .m3u8
playlists_dir = /home/franz/Music/Playlists

[softwaremixer]
enabled = true

[file]
enabled = true
media_dirs =
/home/franz/Music
show_dotfiles = false
follow_symlinks = false
metadata_timeout = 1000

[local]
enabled = true
library = sqlite
media_dir = /home/franz/Music
scan_timeout = 1000
scan_flush_threshold = 100
scan_follow_symlinks = true
excluded_file_extensions =
.directory
.html
.jpeg
.jpg
.log
.nfo
.png
.txt

[alsamixer]
enabled = true
card = 0
control = Master

[quote=“Franz_Furlong, post:1, topic:1345”]
base_dir = $XDG_MUSIC_DIR [/quote]

Found out where I went wrong - forgot to set where the playlists read from! Sorry.