-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: NPE related to home when player logs in.
- Loading branch information
1 parent
acce510
commit 9481fbc
Showing
5 changed files
with
51 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/main/java/emu/grasscutter/data/excels/HomeWorldModuleData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package emu.grasscutter.data.excels; | ||
|
||
import emu.grasscutter.data.GameResource; | ||
import emu.grasscutter.data.ResourceType; | ||
import lombok.AccessLevel; | ||
import lombok.Getter; | ||
import lombok.experimental.FieldDefaults; | ||
|
||
@ResourceType(name = "HomeworldModuleExcelConfigData.json") | ||
@FieldDefaults(level = AccessLevel.PRIVATE) | ||
@Getter | ||
public class HomeWorldModuleData extends GameResource { | ||
int Id; | ||
boolean isFree; | ||
int worldSceneId; | ||
int defaultRoomSceneId; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters