Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Update numbers to represent actual damage numers rather than halved numbers #22

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update to latest 1.12.2 mappings and increment version number
  • Loading branch information
SSyl committed May 6, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 4f0b2b83710dfadc5ae4640c2e0dc3fe18a4ae18
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -14,14 +14,14 @@ buildscript {
}
apply plugin: 'net.minecraftforge.gradle.forge'

version = "1.12-1.14"
version = "1.12-1.14.1"
group= "boni" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "MmmMmmMmmMmm"

minecraft {
version = "1.12.2-14.23.0.2512"
version = "1.12.2-14.23.5.2847"
runDir = "run"
mappings = "snapshot_20171010"
mappings = "stable_39"
}

dependencies {
2 changes: 1 addition & 1 deletion src/main/java/boni/dummy/ItemDummy.java
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
public class ItemDummy extends Item {

public ItemDummy() {
this.setUnlocalizedName("dummy");
this.setTranslationKey("dummy");
this.setRegistryName("dummy");
this.setCreativeTab(CreativeTabs.COMBAT);
}