Merge pull request #3478 from FedUpWith-Tech/v3.0

Change radius value of round area markers to int
This commit is contained in:
mikeprimm 2021-09-07 21:57:27 -05:00 committed by GitHub
commit 74b92961d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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