diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/s_set_command_minecart.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/s_set_command_minecart.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/s_set_command_minecart.rs b/azalea-protocol/src/packets/game/s_set_command_minecart.rs new file mode 100755 index 00000000..0431a865 --- /dev/null +++ b/azalea-protocol/src/packets/game/s_set_command_minecart.rs @@ -0,0 +1,10 @@ +use azalea_buf::AzBuf; +use azalea_protocol_macros::ServerboundGamePacket; + +#[derive(Clone, Debug, AzBuf, ServerboundGamePacket)] +pub struct ServerboundSetCommandMinecart { + #[var] + pub entity: u32, + pub command: String, + pub track_output: bool, +} |
