Fixed some errors warnings. But both these classes are non-functional for now.

This commit is contained in:
Chris Toph 2025-03-13 21:26:50 -04:00
parent 9ee589fe00
commit e28f77917f
4 changed files with 14 additions and 15 deletions

View file

@ -22,8 +22,8 @@ public class SSSwordItem extends SimplySwordsSwordItem implements ItemSpec<SSSwo
/** /**
* Constructor for SimplyCompatSwordItem. * Constructor for SimplyCompatSwordItem.
* *
* @param toolMaterial The material of the tool, with some of its properties/stats. * @param material The material of the tool, with some of its properties/stats.
* @param type The type of the weapon, which affects its modifiers. * @param type The type of the weapon, which affects its modifiers.
*/ */
public SSSwordItem(ToolTier material, SSWeaponType type) { public SSSwordItem(ToolTier material, SSWeaponType type) {
super( super(

View file

@ -13,6 +13,5 @@ public final class SimplyCompatFabric implements ModInitializer {
// Run our common setup. // Run our common setup.
Progression.init(); Progression.init();
Item
} }
} }

View file

@ -12,14 +12,14 @@
"sources": "https://github.com/FabricMC/fabric-example-mod" "sources": "https://github.com/FabricMC/fabric-example-mod"
}, },
"license": "CC0-1.0", "license": "CC0-1.0",
"icon": "assets/simplycompat/icon.png", "icon": "assets/progression/icon.png",
"environment": "*", "environment": "*",
"entrypoints": { "entrypoints": {
"main": [ "main": [
"cc.toph.simplycompat.fabric.SimplyCompatFabric" "cc.toph.progression.fabric.SimplyCompatFabric"
], ],
"client": [ "client": [
"cc.toph.simplycompat.fabric.client.SimplyCompatFabricClient" "cc.toph.progression.fabric.client.SimplyCompatFabricClient"
] ]
}, },
"mixins": [ "mixins": [

View file

@ -14,63 +14,63 @@ A Simple mod for extended compat in Simply Swords!
''' '''
#logoFile = "" #logoFile = ""
[[dependencies.simplycompat]] [[dependencies.progression]]
modId = "forge" modId = "forge"
mandatory = true mandatory = true
versionRange = "[47,)" versionRange = "[47,)"
ordering = "NONE" ordering = "NONE"
side = "BOTH" side = "BOTH"
[[dependencies.simplycompat]] [[dependencies.progression]]
modId = "minecraft" modId = "minecraft"
mandatory = true mandatory = true
versionRange = "[1.20.1,)" versionRange = "[1.20.1,)"
ordering = "NONE" ordering = "NONE"
side = "BOTH" side = "BOTH"
[[dependencies.simplycompat]] [[dependencies.progression]]
modId = "architectury" modId = "architectury"
mandatory = true mandatory = true
versionRange = "[9.2.14,)" versionRange = "[9.2.14,)"
ordering = "AFTER" ordering = "AFTER"
side = "BOTH" side = "BOTH"
[[dependencies.simplycompat]] [[dependencies.progression]]
modId = "simplyswords" modId = "simplyswords"
mandatory = true mandatory = true
versionRange = "[1.56.0-1.20.1,)" versionRange = "[1.56.0-1.20.1,)"
ordering = "AFTER" ordering = "AFTER"
side = "BOTH" side = "BOTH"
[[dependencies.simplycompat]] [[dependencies.progression]]
modId = "additionaladditions" modId = "additionaladditions"
mandatory = false mandatory = false
versionRange = "[6.0.1,)" versionRange = "[6.0.1,)"
ordering = "AFTER" ordering = "AFTER"
side = "BOTH" side = "BOTH"
[[dependencies.simplycompat]] [[dependencies.progression]]
modId = "purecoppertools" modId = "purecoppertools"
mandatory = false mandatory = false
versionRange = "[1.0.1,)" versionRange = "[1.0.1,)"
ordering = "AFTER" ordering = "AFTER"
side = "BOTH" side = "BOTH"
[[dependencies.simplycompat]] [[dependencies.progression]]
modId = "create" modId = "create"
mandatory = false mandatory = false
versionRange = "[0.5.1.j-55,)" versionRange = "[0.5.1.j-55,)"
ordering = "AFTER" ordering = "AFTER"
side = "BOTH" side = "BOTH"
[[dependencies.simplycompat]] [[dependencies.progression]]
modId = "create-deep-dark" modId = "create-deep-dark"
mandatory = false mandatory = false
versionRange = "[1.7.0,)" versionRange = "[1.7.0,)"
ordering = "AFTER" ordering = "AFTER"
side = "BOTH" side = "BOTH"
[[dependencies.simplycompat]] [[dependencies.progression]]
modId = "tfmg" modId = "tfmg"
mandatory = false mandatory = false
versionRange = "[0.9.3-1.20.1,)" versionRange = "[0.9.3-1.20.1,)"