Format code [skip actions]

This commit is contained in:
github-actions
2023-07-15 03:05:16 +00:00
parent f17339f1b6
commit 27d495742d
3 changed files with 9 additions and 14 deletions

View File

@@ -37,15 +37,11 @@ public class HandlerEnterSceneDoneReq extends PacketHandler {
player.getScene().loadNpcForPlayerEnter(player);
// notify client to load the npc for quest
var questGroupSuites =
player.getQuestManager().getSceneGroupSuite(player.getSceneId());
var questGroupSuites = player.getQuestManager().getSceneGroupSuite(player.getSceneId());
player.getScene().loadGroupForQuest(questGroupSuites);
Grasscutter.getLogger()
.trace(
"Loaded Scene {} Quest(s) Groupsuite(s): {}",
player.getSceneId(),
questGroupSuites);
.trace("Loaded Scene {} Quest(s) Groupsuite(s): {}", player.getSceneId(), questGroupSuites);
session.send(new PacketGroupSuiteNotify(questGroupSuites));
// Reset timer for sending player locations

View File

@@ -21,9 +21,9 @@ public final class PacketServerGlobalValueChangeNotify extends BasePacket {
super(PacketOpcodes.ServerGlobalValueChangeNotify);
this.setData(
ServerGlobalValueChangeNotify.newBuilder()
.setEntityId(entityId)
.setValue(value)
.setKeyHash(Utils.abilityHash(abilityHash)));
ServerGlobalValueChangeNotify.newBuilder()
.setEntityId(entityId)
.setValue(value)
.setKeyHash(Utils.abilityHash(abilityHash)));
}
}