IS4
IS4
I propose an alternate detection method via a custom server rule, let's say `~assets` (can be set via YSF or perhaps OMP). I also think that an ability to specify...
Related to this issue: division by zero causes a crash which could be prevented by a simple check and raising `AMX_ERR_DIVIDE`.
I don't really know how the remote controlling in ZEN works of what function it uses, but I would really appreciate a module for the `selectPlayer` function, like what is...
That can be expected. JIT converts the AMX code to native code, while `task_detach` expects the stack and frame pointers to point to memory using standard AMX layout. I may...
Definitely! I wanted to make a proper collection of tests before 1.0, but I never got to it.
What about this? Seems like it should have the same lookup rules. ```cs class Derived : Base { public Derived() : base(x) { const int x = 0; } }...
This is a bad idea for classes, at least when it comes to using the `readonly` keyword. `readonly` on structs is important to the user of the struct, and not...
By the way, I think this technically \*could\* be a non-issue in the future: ```cs public readonly struct S { public int Value; // notice the lack of readonly public...
> > And in other languages, interfaces absolutely can declare what a type "cannot" do: > > Except that they can't. From Java you can choose to not throw an...
I really hope this at least gets considered together with #3055, which does actually bring performance benefits when you care about code principles.