diff --git a/evennia/contrib/rpg/buffs/__init__.py b/evennia/contrib/rpg/buffs/__init__.py index e69de29bb2..d3e73893db 100644 --- a/evennia/contrib/rpg/buffs/__init__.py +++ b/evennia/contrib/rpg/buffs/__init__.py @@ -0,0 +1,4 @@ +from .buff import (BaseBuff, BuffableProperty, BuffHandler, CmdBuff, # noqa + Mod, cleanup_buffs, tick_buff) +from .samplebuffs import (Exploit, Exploited, Leeching, Poison, Sated, # noqa + StatBuff) diff --git a/evennia/contrib/rpg/llm/__init__.py b/evennia/contrib/rpg/llm/__init__.py index 67614be113..b8ec8e9d22 100644 --- a/evennia/contrib/rpg/llm/__init__.py +++ b/evennia/contrib/rpg/llm/__init__.py @@ -1,2 +1,2 @@ -from .llm_client import LLMClient -from .llm_npc import LLMNPC, CmdLLMTalk +from .llm_client import LLMClient # noqa +from .llm_npc import LLMNPC, CmdLLMTalk # noqa