Skip to content

Commit

Permalink
fix: passing wrong argument to serde
Browse files Browse the repository at this point in the history
  • Loading branch information
TropicalShadow committed Jan 27, 2024
1 parent 7ac1645 commit c57d732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shulker-crds/src/v1alpha1/minecraft_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pub struct MinecraftServerConfigurationSpec {

/// Location of the plugins folder inside the server. Defaults to
/// `plugins` but can be changed to `mods` for example
#[serde(default = "Option::is_none")]
#[serde(skip_serializing_if = "Option::is_none")]
pub plugin_folder_location: Option<String>,

/// Number of maximum players that can connect to the
Expand Down

0 comments on commit c57d732

Please sign in to comment.