Make Market Union Member Julia a working warp NPC for the Loren Market#809
Make Market Union Member Julia a working warp NPC for the Loren Market#809nolt wants to merge 1 commit into
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enables the intended functionality for the NPC 'Market Union Member Julia', transforming her from a non-functional merchant into a functional warp point between Lorencia and the Loren Market. By leveraging existing client-side UI components and implementing a secure server-side handler, the changes provide a seamless travel experience while ensuring the warp mechanism cannot be exploited. Highlights
New Features🧠 You can now enable Memory (public preview) to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize the Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counterproductive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request implements a working warp NPC (Market Union Member Julia) to teleport players between Lorencia and the Loren Market. It introduces a new packet handler, EnterMarketPlaceHandlerPlugIn, and an update plugin to configure the NPC's window and spawn location. The feedback suggests an improvement in EnterMarketPlaceHandlerPlugIn to retrieve the target map and spawn gate more efficiently using existing context methods instead of querying the configuration directly.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
Market Union Member Julia (547) had a merchant window but no store, so talking to her opened an empty, non-working shop. In the original game she is a warp NPC that moves players between Lorencia and the Loren Market, on both sides. Wire her up to the warp window the game client already provides: - change her NPC window to JuliaWarpMarketServer, so talking to her opens the client's Julia "Warp" window instead of an empty shop; - spawn a second instance of her in Lorencia, which is the entrance; - add a handler for the EnterMarketPlaceRequest sent by the window's Warp button, which warps the player to the other side (Loren Market or Lorencia) depending on the map they are currently on; - add an optional configuration update which applies this to existing servers. The game client already implements the window, the button and the packet, so no client change is required.
8dde1de to
92ef5d2
Compare
Summary
Market Union Member Julia (547) had a merchant window but no store, so talking
to her opened an empty, non-working shop. In the original game she is a warp NPC
that moves players between Lorencia and the Loren Market, on both sides.
This wires her up to the warp window the game client already provides.
Changes
JuliaWarpMarketServer, so talking to her opensthe client's Julia "Warp" window instead of an empty shop.
EnterMarketPlaceRequest(sent by the window's "Warp"button) which warps the player to the other side: to the Loren Market when
talking to her in Lorencia, and back to Lorencia when talking to her in the
Loren Market.
AddLorenMarketJuliaWarp) so existingservers get the same behaviour without re-initializing.
Notes
no client change is required.
the map the player is currently on.
used as a free teleport.
Testing
Market, with the correct NPC window.