-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dc5d5c
commit 34c4b33
Showing
4 changed files
with
44 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Title: Bug Patch | ||
Summary: Minor bug fixes | ||
|
||
## Bug Fixes | ||
- Fixed Gifting modal incorrectly claiming that all friends already own the item |
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
34 changes: 34 additions & 0 deletions
34
...ionmanager/common/packet/cosmetic/ServerCosmeticBulkRequestUnlockStateResponsePacket.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,34 @@ | ||
/* | ||
* Copyright (c) 2024 ModCore Inc. All rights reserved. | ||
* | ||
* This code is part of ModCore Inc.'s Essential Mod repository and is protected | ||
* under copyright registration # TX0009138511. For the full license, see: | ||
* https://github.com/EssentialGG/Essential/blob/main/LICENSE | ||
* | ||
* You may not use, copy, reproduce, modify, sell, license, distribute, | ||
* commercialize, or otherwise exploit, or create derivative works based | ||
* upon, this file or any other in this repository, all of which is reserved by Essential. | ||
*/ | ||
package gg.essential.connectionmanager.common.packet.cosmetic; | ||
|
||
import gg.essential.connectionmanager.common.packet.Packet; | ||
import gg.essential.lib.gson.annotations.SerializedName; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
import java.util.Collections; | ||
import java.util.Map; | ||
import java.util.UUID; | ||
|
||
public class ServerCosmeticBulkRequestUnlockStateResponsePacket extends Packet { | ||
|
||
private final @NotNull @SerializedName("unlock_states") Map<UUID, Boolean> unlockStates; | ||
|
||
public ServerCosmeticBulkRequestUnlockStateResponsePacket(final @NotNull Map<UUID, Boolean> unlockStates) { | ||
this.unlockStates = unlockStates; | ||
} | ||
|
||
public @NotNull Map<UUID, Boolean> getUnlockStates() { | ||
return Collections.unmodifiableMap(this.unlockStates); | ||
} | ||
|
||
} |
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