diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-08-24 19:11:26 -0700 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-08-24 19:16:22 -0700 |
| commit | a0a2068b66204d7d06eb3c3b4aa61b28469121f6 (patch) | |
| tree | e9706970af1ce8b4d12df9c0a3f64fa17ca74b97 /kennel/engine/components/controllable.py | |
| parent | b144ad5df76e458297bd6dc030cad4af0f344901 (diff) | |
| download | kennel.hatecomputers.club-a0a2068b66204d7d06eb3c3b4aa61b28469121f6.tar.gz kennel.hatecomputers.club-a0a2068b66204d7d06eb3c3b4aa61b28469121f6.zip | |
improve event parsing and begin sending events from the client
Diffstat (limited to 'kennel/engine/components/controllable.py')
| -rw-r--r-- | kennel/engine/components/controllable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kennel/engine/components/controllable.py b/kennel/engine/components/controllable.py index 25ec835..a9173af 100644 --- a/kennel/engine/components/controllable.py +++ b/kennel/engine/components/controllable.py @@ -9,6 +9,6 @@ class Controllable(Component): def __repr__(self) -> str: return f"Controllable(by={self.by})" - def dict(self) -> dict: + def to_dict(self) -> dict: # don't serialize who owns this return {} |
