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() {
375375 * @param value
376376 * the property's value
377377 */
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 ) );
380380 }
381381
382382 /**
Original file line number Diff line number Diff line change 22
33The CodinGame SDK is regularly updated and improved. This document lets you know what changed in the latest releases.
44
5+ ## Next version
6+
7+ ### 🐞 Bug fix
8+
9+ - Removed "missing welcome_en.html file" warning.
10+ - Fixed the ` putMetadata ` function's signature
11+
512## 4.4.4
613
714### 🐞 Bug fix
You can’t perform that action at this time.
0 commit comments