fix: increase maximum message length that can me shown on center of screen (resolves #322 )
This commit is contained in:
parent
06774a4282
commit
e659495942
1 changed files with 1 additions and 1 deletions
|
|
@ -242,7 +242,7 @@ template <typename ...Args> inline void BotControl::msg (const char *fmt, Args &
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_isFromConsole || strnlen (result, StringBuffer::StaticBufferSize) > 56 || m_rapidOutput) {
|
if (m_isFromConsole || strnlen (result, StringBuffer::StaticBufferSize) > 96 || m_rapidOutput) {
|
||||||
if (m_rapidOutput) {
|
if (m_rapidOutput) {
|
||||||
m_printQueue.emplaceLast (PrintQueueDestination::ClientConsole, result);
|
m_printQueue.emplaceLast (PrintQueueDestination::ClientConsole, result);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue