Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tower Dungeons Handoff between levels #594

Merged
10 commits merged into from
May 6, 2022
Prev Previous commit
Next Next commit
Add @transient for temporary team
  • Loading branch information
Akka0 committed May 6, 2022
commit a79e00896cb99b783cb0bcef48a431a26da4cc24
4 changes: 2 additions & 2 deletions src/main/java/emu/grasscutter/game/player/TeamManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ public class TeamManager {
@Transient private final IntSet teamResonances;
@Transient private final IntSet teamResonancesConfig;

private int useTemporarilyTeamIndex = -1;
@Transient private int useTemporarilyTeamIndex = -1;
/**
* Temporary Team for tower
*/
private List<TeamInfo> temporaryTeam;
@Transient private List<TeamInfo> temporaryTeam;

public TeamManager() {
this.mpTeam = new TeamInfo();
Expand Down