HVBGG

Results 2 issues of HVBGG

### Please make sure you have read the above notes and check the confirmation box below. - [x] I have tested with a clean environment without any other non-essential mods,...

bug

import logging class NeoModLoaderError(Exception): pass class Listener: def __init__(self, name): self.name = name def construct(self): raise NeoModLoaderError(f"Failed to construct listener instance of {self.name}") def create_listener(listener_name): try: listener = Listener(listener_name) listener.construct()...