Skip to content

Commit e5c063b

Browse files
committed
Merge branch 'Archipelago' of https://github.com/Z11Coding/Mixtape-Engine-Rework into Archipelago
2 parents 8ad12af + 53dc421 commit e5c063b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/archipelago/APYaml.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class APYaml {
5858
sectionData.set(key, value.split(",").map(function(item) return item.trim()));
5959
} else if (value == "true" || value == "false") {
6060
sectionData.set(key, value == "true");
61-
} else if (cast(Std.parseFloat(value), Null<Float>) != null || !Math.isNaN(Std.parseFloat(value))) {
61+
} else if (cast(Std.parseFloat(value), Null<Float>) != null || Math.isNaN(Std.parseFloat(value))) {
6262
sectionData.set(key, Std.parseFloat(value));
6363
} else {
6464
sectionData.set(key, value);

0 commit comments

Comments
 (0)