Skip to content

Commit

Permalink
fixed common proxy not being initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
MehVahdJukaar committed Aug 4, 2024
1 parent ad8b688 commit 17d6657
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
8 changes: 1 addition & 7 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
(sorry for double and delayed release, I messed up)
- Major overhaul of zeta event system
- Zeta events now directly delegate to forge events and the forge bus itself instead of having their own bus implementation
- No longer are events fired by forge, intercepted by zeta, and then fired again by zeta, some time multiple times per event
- These change should make the event system faster
- Many events were also chanced to accomodate this change.
- Notably event phasing has been standardized. This fixes issues where some events could be firing twice
- fixed an issue with biome modifier serializers not being registered (issue from very last release)
2 changes: 1 addition & 1 deletion push_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def main():
for line in lines:
changelog = changelog + '-m "'+line+'" '

tag_success = os.system('git tag -a release-{}-{}-{} {}'.format(mc_version, version, build_number, changelog))
tag_success = os.system('git tag -a release-{}-{}-{}b {}'.format(mc_version, version, build_number, changelog))

if tag_success != 0:
print('Failed to create tag')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public class ZetaModClientProxy extends ZetaModCommonProxy {

@Override
public void registerEvents(Zeta zeta){
super.registerEvents(zeta);
zeta.playBus
.subscribe(ClientTicker.INSTANCE)
.subscribe(new RequiredModTooltipHandler.Client(zeta));
Expand Down

0 comments on commit 17d6657

Please sign in to comment.