mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
13 lines
314 B
Python
13 lines
314 B
Python
|
"""LargeBlobSenderConsts module"""
|
||
|
|
||
|
USE_DISK = 0x01
|
||
|
|
||
|
ChunkSize = 100
|
||
|
|
||
|
FilePattern = 'largeBlob.%s'
|
||
|
|
||
|
def getLargeBlobPath():
|
||
|
# this folder needs to be accessible by everyone that is going to level edit
|
||
|
# an area as a group
|
||
|
return config.GetString('large-blob-path', 'i:\\toontown_in_game_editor_temp')
|