Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ziqian zhang
Grasscutter
Commits
f93d998f
Commit
f93d998f
authored
Sep 02, 2022
by
pfyy
Committed by
Melledy
Sep 02, 2022
Browse files
fix serenitea pot main building
parent
735b48ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/java/emu/grasscutter/data/binout/HomeworldDefaultSaveData.java
View file @
f93d998f
...
...
@@ -34,8 +34,11 @@ public class HomeworldDefaultSaveData {
@SerializedName
(
value
=
"FGIJCELCGFI"
,
alternate
=
"PGDPDIDJEEL"
)
int
blockId
;
@SerializedName
(
value
=
"BEAPOFELABD"
,
alternate
=
"MLIODLGDFHJ"
)
@SerializedName
(
"BEAPOFELABD"
)
List
<
HomeFurniture
>
furnitures
;
@SerializedName
(
"MLIODLGDFHJ"
)
List
<
HomeFurniture
>
persistentFurnitures
;
}
@Data
...
...
src/main/java/emu/grasscutter/game/home/HomeBlockItem.java
View file @
f93d998f
...
...
@@ -75,9 +75,13 @@ public class HomeBlockItem {
homeBlock
.
getFurnitures
().
stream
()
.
map
(
HomeFurnitureItem:
:
parseFrom
)
.
toList
())
.
persistentFurnitureList
(
homeBlock
.
getPersistentFurnitures
()
==
null
?
List
.
of
()
:
homeBlock
.
getPersistentFurnitures
().
stream
()
.
map
(
HomeFurnitureItem:
:
parseFrom
)
.
toList
())
.
deployAnimalList
(
List
.
of
())
.
deployNPCList
(
List
.
of
())
.
persistentFurnitureList
(
List
.
of
())
.
build
();
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment