This commit is contained in:
meng_xi_pan
2025-04-09 18:17:38 +08:00
parent a6f6aed6ce
commit 9d590446ca
2 changed files with 12 additions and 0 deletions

View File

@@ -74,4 +74,10 @@ class ClassicalWillingManager(BaseWillingManager):
if current_willing < 1: if current_willing < 1:
self.chat_reply_willing[chat_id] = min(1, current_willing + 0.4) self.chat_reply_willing[chat_id] = min(1, current_willing + 0.4)
async def bombing_buffer_message_handle(self, message_id):
return await super().bombing_buffer_message_handle(message_id)
async def not_reply_handle(self, message_id):
return await super().not_reply_handle(message_id)

View File

@@ -235,3 +235,9 @@ class DynamicWillingManager(BaseWillingManager):
self.chat_reply_willing[chat_id] = min(2.0, current_willing + willing_increase) self.chat_reply_willing[chat_id] = min(2.0, current_willing + willing_increase)
async def bombing_buffer_message_handle(self, message_id):
return await super().bombing_buffer_message_handle(message_id)
async def after_generate_reply_handle(self, message_id):
return await super().after_generate_reply_handle(message_id)