prefab gui target fix

This commit is contained in:
Eric Froemling 2021-06-03 15:52:55 -05:00
parent 8d757e6fe1
commit 93eb876e5f
No known key found for this signature in database
GPG Key ID: 89C93F0F8D6D5A98

View File

@ -76,9 +76,9 @@ class SourceCategory(Enum):
class PrefabTarget(Enum):
"""Types of prefab builds able to be run."""
DEBUG = 'debug'
DEBUG = 'gui-debug'
SERVER_DEBUG = 'server-debug'
RELEASE = 'release'
RELEASE = 'gui-release'
SERVER_RELEASE = 'server-release'