NotAFile
NotAFile
> [...] I run into some warnings/problems when launching the server. This is the error I get: > Getting external IP failed: [] > Any ideas of whats wrong and...
When testing just now with Betterspades, I was not able to kill a player on my team even when toggleteamkill reported teamkilling was turned on.
While writing an issue template, I noticed that any currently installed version still reports itself as 0.1.3, even though it's the current master version. setuptools_scm can solve this by automatically...
the implementation (pyspades/master.py) should stay in the pyspades module, but any other logic should be moved to piqueserver for cleaner separation and easier testing.
Currently, the Vertex3 object uses a `Vector*`. However, it is nicer and faster to use the Vector directly instead of a pointer. This is currently not possible because some types...
``` # NOTE: for the most part this behaves as a 2d vector, with z being tacked on # so it's useful for orientation math ```
inlinecallbacks allows you to nicely represent loops as... loops, instead of the callback mess we have right now. There's a few places this could be done: - [ ] sending...
stuff like `Tuple[bool, bool, bool, bool]` really isn't easy or good to work with. at least a `NamedTuple` should be used
There's a bunch of stuff that's done on every command pre-call. It would be neat to move it into the `@command` decorator instead. This allows for more flexibility with various...