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 8d423747c0
commit c4d9090b54

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);