Map editor improvements

This commit is contained in:
2025-01-05 01:43:39 +01:00
parent ef807982a5
commit 2d09715dc4
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ const gameStore = useGameStore()
onMounted(fetchMaps)
function fetchMaps() {
gameStore.connection?.emit('gm:mapObject:list', {}, (response: Map[]) => {
gameStore.connection?.emit('gm:map:list', {}, (response: Map[]) => {
mapEditorStore.setMapList(response)
})
}