issue-4: add chat fallback for biolog submit

This commit is contained in:
server
2026-04-16 17:36:46 +02:00
parent a52debbb2a
commit c11008d1c8

View File

@@ -137,6 +137,9 @@ class BiologWindow(ui.BoardWithTitleBar):
self.Refresh()
def __OnSubmit(self):
net.SendBiologSubmit()
try:
net.SendBiologSubmit()
except AttributeError:
net.SendChatPacket("/biolog_submit", 0)
self.lastRefreshTime = 0.0
self.Refresh()