1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-22 20:57:46 +00:00

Make comment field public

This commit is contained in:
Joshua Goins 2025-03-10 18:08:30 -04:00
parent 633c18e2f4
commit fecb21cf88

View file

@ -223,7 +223,7 @@ pub struct CharacterData {
#[bw(pad_size_to = MAX_COMMENT_LENGTH)] #[bw(pad_size_to = MAX_COMMENT_LENGTH)]
#[br(map = read_string)] #[br(map = read_string)]
#[bw(map = write_string)] #[bw(map = write_string)]
comment: String, pub comment: String,
} }
impl CharacterData { impl CharacterData {