File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
engine/core/src/main/java/com/codingame/gameengine/core Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -375,8 +375,8 @@ boolean getOuputsRead() {
375
375
* @param value
376
376
* the property's value
377
377
*/
378
- public final void putMetadata (String key , String value ) {
379
- metadata .put (key , value );
378
+ public final void putMetadata (String key , double value ) {
379
+ metadata .put (key , String . valueOf ( value ) );
380
380
}
381
381
382
382
/**
Original file line number Diff line number Diff line change 2
2
3
3
The CodinGame SDK is regularly updated and improved. This document lets you know what changed in the latest releases.
4
4
5
+ ## Next version
6
+
7
+ ### 🐞 Bug fix
8
+
9
+ - Removed "missing welcome_en.html file" warning.
10
+ - Fixed the ` putMetadata ` function's signature
11
+
5
12
## 4.4.4
6
13
7
14
### 🐞 Bug fix
You can’t perform that action at this time.
0 commit comments