Change radius value of round area markers to int

This commit is contained in:
FedUpWith-Tech 2021-08-29 10:42:29 -04:00 committed by GitHub
parent fa0e87d3c0
commit 0c001eea7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -271,7 +271,7 @@ public class DynmapMapCommands {
sender.sendMessage("Bad parameter for type " + type + ": " + id);
return false;
}
radius = Double.valueOf(val);
radius = Integer.valueOf(val);
break;
case "style":
style = HiddenChunkStyle.fromValue(val);