Stefan Hendriks
Stefan Hendriks
So if I get this properly, you attacked with infantry units which led the Harvesters to chase them and then once at your base the enemy harvesters remained there. And...
I believe you can even do so once you have the enemy base in sight... 🤣
> would be cool to have the "primary building" selection mechanic of Command and Conquer when you build more than one factory of the same type :D (not priority) I...
Checked it. This was not fixed :) - The air projectiles would only not damage the originator of the bullet. However, it would still do friendly fire. I made it...
As a test I created a function out of these 2 lines: ``` val typeRef: TypeReference = object : TypeReference() {} val mapRead = mapper.readValue(json, typeRef) ``` into the `SwissKnife`:...
I narrowed it down to a Kotlin feature, but I don't know *why* it happens: The following function fails: ``` @Throws(JsonProcessingException::class, JsonMappingException::class) fun getJsonValuesAsMapFriendly2(jsonData: String?): Map { val typeRef: TypeReference...
I found it. I should have known, but somehow I overlooked. The whole reason this won't work how it is written now is because of ***[Type Erasure](https://docs.oracle.com/javase/tutorial/java/generics/erasure.html)***. [This answer at...
Although the unit test works, when further working with the data, directly in to a `Json` object, I get: ``` Could not write JSON: class java.lang.String cannot be cast to...
Note, even YAPB seems to rely on `tpHit` to give something back (see [this commit](https://github.com/jeefo/yapb/blob/5f6a1638d6ec6866db86d898557d20ed3ac8387d/source/waypoint.cpp#L1258)), and removes the flag (see [this commit](https://github.com/jeefo/yapb/blob/168bcf1d36b3daa4537f8ad6773c2d93635d0e43/source/interface.cpp#L1042)) as Realbot also does. So they probably also...
FYI: Even when reading point information it won't read SOLID. (as expected) ``` for (int i = 1; i < 40; i += 2) { v_dest = v_source + gpGlobals->v_forward...