Ranieri Althoff
Ranieri Althoff
As I suggested on a commit
# 🐛 bug report ## 🎛 Configuration (.babelrc, package.json, cli command) package.json: ```json { "source": "src/index.ts", "module": "dist/index.js", "types": "dist/index.d.ts", } ``` `src/index.ts` ```ts export * from './src/components'; ``` CLI:...
 Congratulations 😃
### Pull Request Prelude - [x] I have followed [proper The Forgotten Server code styling][code]. - [x] I have read and understood the [contribution guidelines][cont] before making this PR. -...
### Pull Request Prelude - [x] I have followed [proper The Forgotten Server code styling][code]. - [x] I have read and understood the [contribution guidelines][cont] before making this PR. -...
This effectively nukes the raid system in favor of global events, which permit better management for raids. It's easier to define raids on interval, on exact times, force execution, force...
`getX` is a very confusing name, since it may be both a casting function or a function to actually get a value from an object. To prevent confusion, the casting...
`getScriptBaseName` functions exist in event types (`Actions`, `Weapons`, etc) and return a constant string referring to the name of the class. It is possible to, instead of returning `std::string`, return...
When we declare a `static constexpr`, it means that the value will be present in each compilation unit i.e. each object generated with a cpp file. That means, if a...
This adds a higher level hashing backend with support for different algorithms, heavily based on [Django framework's](https://docs.djangoproject.com/en/1.10/topics/auth/passwords/) which is very reliable. A password must be stored in the database with...