We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f019c3f commit e071da6Copy full SHA for e071da6
src/internal/builder.ts
@@ -52,8 +52,8 @@ export class CFToolsClientBuilder {
52
*/
53
public withCacheConfiguration(config: Partial<CacheConfiguration>): CFToolsClientBuilder {
54
this.cacheConfig = {
55
- ...config,
56
...this.cacheConfig,
+ ...config,
57
};
58
return this;
59
}
src/types.ts
@@ -222,7 +222,11 @@ export interface LeaderboardItem {
222
suicides: number,
223
kills: number,
224
hits: number,
225
+ /**
226
+ * @deprecated Use killDeathRatio instead
227
+ */
228
killDeathRation: number,
229
+ killDeathRatio: number,
230
longestKill: number,
231
longestShot: number,
232
deaths: number,
0 commit comments