Skip to content

Commit

Permalink
Rando shorter messages (#41)
Browse files Browse the repository at this point in the history
* Revert item tables

* Revert item tables more

* First pass of custom GI messages for vanilla items

* More progress + prepare all vanilla GI messages

* Move GI vanilla injection
  • Loading branch information
aMannus authored Oct 9, 2023
1 parent ae49731 commit 5e1c2b0
Show file tree
Hide file tree
Showing 4 changed files with 618 additions and 127 deletions.
3 changes: 3 additions & 0 deletions soh/soh/Enhancements/custom-message/CustomMessageManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@ const std::string CustomMessage::MESSAGE_END() const {
}

const std::string CustomMessage::ITEM_OBTAINED(uint8_t x) const {
if (x == ITEM_NONE) {
return "";
}
return "\x13"s + char(x);
}

Expand Down
Loading

0 comments on commit 5e1c2b0

Please sign in to comment.