Skip to content

Commit

Permalink
updated ribbons and libdx to allow trailing commas in macros
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamby777 committed Mar 7, 2024
1 parent d438e35 commit d1e2c93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pets-lib/src/dialogue/autoload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ impl DBoxInterface {
let ix = unwrap_fmt!(
ix,
"Could not find interaction \"{}\" in the interaction map",
ix_id
ix_id,
);

let mut dbox = self.instantiate_dbox();
Expand Down
2 changes: 1 addition & 1 deletion pets-lib/src/dialogue/dbox/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ impl DialogBox {
let new_ix = unwrap_fmt!(
new_ix,
"GOTO: Could not find interaction with ID: {}",
ix_id
ix_id,
);

self.set_ix(new_ix.clone());
Expand Down
4 changes: 2 additions & 2 deletions pets-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ unsafe impl ExtensionLibrary for PetsLib {
[
StatsInterface,
DBoxInterface,
FnInterface
FnInterface,
] => Autoload, register
);
}
Expand All @@ -93,7 +93,7 @@ unsafe impl ExtensionLibrary for PetsLib {
[
StatsInterface,
DBoxInterface,
FnInterface
FnInterface,
] => Autoload, unregister
);
}
Expand Down

0 comments on commit d1e2c93

Please sign in to comment.