-
Notifications
You must be signed in to change notification settings - Fork 1
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
83cd493
commit 1716257
Showing
10 changed files
with
31 additions
and
13 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...megaflowey/data/omegaflowey.entity/function/directorial/boss_fight/shared/stop.mcfunction
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
2 changes: 1 addition & 1 deletion
2
...gaflowey.entity/function/directorial/boss_fight/summit/phase/attack/initialize.mcfunction
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
2 changes: 1 addition & 1 deletion
2
...flowey.entity/function/directorial/boss_fight/summit/phase/cutscene/initialize.mcfunction
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
2 changes: 1 addition & 1 deletion
2
...megaflowey.entity/function/directorial/boss_fight/summit/phase/soul/initialize.mcfunction
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
2 changes: 1 addition & 1 deletion
2
...megaflowey.entity/function/directorial/boss_fight/summit/phase/warn/initialize.mcfunction
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
2 changes: 1 addition & 1 deletion
2
...omegaflowey/data/omegaflowey.entity/function/soul/soul_5/healer/heal/as_player.mcfunction
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
4 changes: 2 additions & 2 deletions
4
datapacks/omegaflowey/data/omegaflowey.entity/function/utils/damage/as_player.mcfunction
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
2 changes: 1 addition & 1 deletion
2
...ata/omegaflowey.main/function/telemetry/data/active_player/bossfight_hit_count.mcfunction
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
function omegaflowey.main:telemetry/data/shared | ||
|
||
execute store result storage omegaflowey:telemetry.temp data.player_hit_count int 1 run \ | ||
execute store result storage omegaflowey:telemetry.temp data.h int 1 run \ | ||
scoreboard players get #omegaflowey.bossfight.player_hit_count omegaflowey.global.flag |
8 changes: 4 additions & 4 deletions
8
...egaflowey/data/omegaflowey.main/function/telemetry/data/active_player/gamemode.mcfunction
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
function omegaflowey.main:telemetry/data/shared | ||
|
||
$execute as $(active_player_uuid) if entity @s[gamemode=survival] run \ | ||
data modify storage omegaflowey:telemetry.temp data.player_gamemode set value 0 | ||
data modify storage omegaflowey:telemetry.temp data.g set value 0 | ||
$execute as $(active_player_uuid) if entity @s[gamemode=creative] run \ | ||
data modify storage omegaflowey:telemetry.temp data.player_gamemode set value 1 | ||
data modify storage omegaflowey:telemetry.temp data.g set value 1 | ||
$execute as $(active_player_uuid) if entity @s[gamemode=adventure] run \ | ||
data modify storage omegaflowey:telemetry.temp data.player_gamemode set value 2 | ||
data modify storage omegaflowey:telemetry.temp data.g set value 2 | ||
$execute as $(active_player_uuid) if entity @s[gamemode=spectator] run \ | ||
data modify storage omegaflowey:telemetry.temp data.player_gamemode set value 3 | ||
data modify storage omegaflowey:telemetry.temp data.g set value 3 |