Results 111 issues of 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...

bug
not-our-bug
priority:normal

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.

bug
core commands

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...

distribution

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.

easy
refactoring

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...

refactoring

``` # NOTE: for the most part this behaves as a 2d vector, with z being tacked on # so it's useful for orientation math ```

refactoring

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...

refactoring

stuff like `Tuple[bool, bool, bool, bool]` really isn't easy or good to work with. at least a `NamedTuple` should be used

help wanted
refactoring

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...

refactoring