Skip to content

Commit 56e4666

Browse files
committed
[REFACTOR] Version bump.
1 parent 132a25d commit 56e4666

3 files changed

Lines changed: 17 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22

3+
### 7.7.0 (2026-06-19)
4+
- Mod now uses data generation properly.
5+
36
### 7.6.0 (2026-06-04)
47
- Added the Smile Butterfly.
58

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ mod_name=Butterfly Mod
4848
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
4949
mod_license=All Rights Reserved
5050
# The mod version. See https://semver.org/
51-
mod_version=7.6.0
51+
mod_version=7.7.0
5252
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
5353
# This should match the base package used for the mod sources.
5454
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

src/main/java/com/bokmcdok/butterflies/data/tags/ModPoiTypeTagsProvider.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,27 @@
1313
import java.util.Objects;
1414
import java.util.concurrent.CompletableFuture;
1515

16+
/**
17+
* Generates POI tags.
18+
*/
1619
public class ModPoiTypeTagsProvider extends PoiTypeTagsProvider {
1720

21+
/**
22+
* Construction.
23+
* @param packOutput The pack to output to.
24+
* @param lookupProvider Helps with registry lookups.
25+
* @param existingFileHelper Helps to check existing files.
26+
*/
1827
public ModPoiTypeTagsProvider(PackOutput packOutput,
1928
CompletableFuture<HolderLookup.Provider> lookupProvider,
2029
@Nullable ExistingFileHelper existingFileHelper) {
2130
super(packOutput, lookupProvider, ButterfliesMod.MOD_ID, existingFileHelper);
2231
}
2332

33+
/**
34+
* Entry point.
35+
* @param lookupProvider Helps with registry lookups.
36+
*/
2437
@Override
2538
protected void addTags(HolderLookup.@NotNull Provider lookupProvider) {
2639
tag(PoiTypeTags.ACQUIRABLE_JOB_SITE)

0 commit comments

Comments
 (0)