Skip to content

Commit

Permalink
fix: stop tagger from falling into the floor when the game starts
Browse files Browse the repository at this point in the history
  • Loading branch information
LooFifteen committed Mar 10, 2024
1 parent 0170d3a commit da14bc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ private void beginGame() {
((AreaEffectCloudMeta) holderEntity.getEntityMeta()).setRadius(0f);

MapSpawns spawns = this.map.spawns();
holderEntity.setInstance(this.map.instance(), spawns.tagger()).thenRun(() -> {
holderEntity.setInstance(this.map.instance(), spawns.tagger().add(0, 0.1, 0)).thenRun(() -> {
for (Player tagger : taggers) {
holderEntity.addPassenger(tagger);
tagger.setGlowing(true);
Expand Down

0 comments on commit da14bc4

Please sign in to comment.