Skip to content

Commit

Permalink
Tweaks around buildings and exteriors
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamarine committed Nov 11, 2023
1 parent 65528cb commit de1d63e
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Updated to 1.20.2
* Updated to use JSON-based ore features. Config is currently (and perhaps will not in a foreseeable future) unavailable.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021-2022 Intelligent Creations
Copyright (c) 2021-2022 Intelligent Creations, 2023 Prismwork

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

# Rand'Ore

[![](http://cf.way2muchnoise.eu/full_514716_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/randore)

[>> Download <<](https://www.curseforge.com/minecraft/mc-mods/randore)
[![CurseForge](http://cf.way2muchnoise.eu/full_514716_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/randore)
[![Modrinth](https://img.shields.io/modrinth/dt/PVN8P7kZ)](https://modrinth.com/mod/randore)

*Simple random ores for Fabric!*

> **This mod is open source and under a permissive license.** As such, it can be included in any modpack on any platform without prior permission. I(Peakstep) appreciate hearing about people using my mods, but you do not need to ask to use them. See the [LICENSE file](LICENSE) for more details.
> **This mod is open source and under a permissive license.** As such, it can be included in any modpack on any platform without prior permission. We appreciate hearing about people using our mods, but you do not need to ask to use them. See the [LICENSE file](LICENSE) for more details.
This is a simple mod written in Kotlin that adds four kinds of random ores that generate in the three vanilla dimensions naturally and rarely. As their names, they drop vanilla ores after being mined. It also provides a config to adjust ore generation features like vein size, oregen height and more.
This is a fairly simple mod that adds four kinds of random ores that generate in the three vanilla dimensions naturally and rarely. As their names, they drop vanilla ores after being mined.
22 changes: 22 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
kotlin("jvm")
id("fabric-loom")
id("me.modmuss50.mod-publish-plugin") version "0.4.2"
`maven-publish`
java
}
Expand Down Expand Up @@ -36,6 +37,27 @@ tasks {
from("LICENSE")
}

publishMods {
changelog = file("CHANGELOG.md").readText(Charsets.UTF_8)
type = STABLE
file.set(remapJar.get().archiveFile)
version.set("${project.version}")
displayName.set("[Fabric ${property("minecraft_version")}] ${property("mod_version")}")
modLoaders.addAll("fabric", "quilt")

modrinth {
accessToken = providers.environmentVariable("MODRINTH_API_KEY")
projectId = "PVN8P7kZ"
minecraftVersions.add("${property("minecraft_version")}")
}

curseforge {
accessToken = providers.environmentVariable("CURSEFORGE_API_KEY")
projectId = "514716"
minecraftVersions.add("${property("minecraft_version")}")
}
}

publishing {
publications {
create<MavenPublication>("mavenJava") {
Expand Down

0 comments on commit de1d63e

Please sign in to comment.