Commit Graph

2543 Commits

Author SHA1 Message Date
enbrain 098157df6a
Complete LeverBlock (#1949) 2021-01-04 22:32:49 +00:00
Deximus-Maximus b80c72911d
Update MapColor field names (#1849)
* Update MapColor field names

* Update mappings/net/minecraft/block/MapColor.mapping

Co-authored-by: i509VCB <i509vcb@gmail.com>

* Update mappings/net/minecraft/block/MapColor.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/block/MapColor.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/block/MapColor.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/block/MapColor.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/block/MapColor.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/block/MapColor.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update MapColor.mapping

* Update MapColor.mapping

Co-authored-by: Kevin Eastridge <kevbeastridge@gmail.com>
Co-authored-by: i509VCB <i509vcb@gmail.com>
Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2021-01-03 20:54:52 +00:00
yyny 6988b5b651
Complete mapping for `ModelVariant` (#1948)
The type is `AffineTransformation` but it is only used for rotation.
2021-01-03 20:53:47 +00:00
YanisBft 553ad17e3c
Random stuff (#1947) 2021-01-03 20:53:34 +00:00
Tom_The_Geek 9a5273f484
Map some BE renderers (#1945)
* Map some be renderer stuff

* Remove mappings that conflict with #1944

* dont delete other mappings

* fix typos

* fix tab/space issues
2021-01-03 20:53:25 +00:00
yyny 98fbc1b636
`getFirst` -> `build` (#1946)
As an optimization, this method returns the first model if there was only one model added. In the general case, this returns a `new WeightedBakedModel`
2021-01-03 20:52:02 +00:00
YanisBft 7a3b5e7c30
Beacon beam rendering and other be renderers (#1944)
* Beacon beam rendering and other be renderers

* missing parameters

* follow conventions
2020-12-31 14:23:15 +00:00
Shnupbups b9d56158e5
20w51a things (#1918)
* stuff

haha yes

* buckets

* sleeping gamerule thing

* haha yes

* haha yes

* Update mappings/net/minecraft/item/ItemUsage.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/entity/ai/brain/Brain.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/entity/LivingEntity.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* stuff

* things

* whoop

* Update mappings/net/minecraft/entity/Entity.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/server/world/ServerWorld.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/world/gen/chunk/GenerationShapeConfig.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/world/dimension/DimensionType.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/world/dimension/AreaHelper.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

Co-authored-by: YanisBft <doublecraft.official@gmail.com>
Co-authored-by: modmuss50 <modmuss50@gmail.com>
2020-12-31 14:22:27 +00:00
fewizz e7710a559e
GL things (#1926)
* GL things

* fixes

* getID -> getId

Co-authored-by: Gegy <gegy1000@gmail.com>

Co-authored-by: Gegy <gegy1000@gmail.com>
2020-12-28 13:08:33 +00:00
Siphalor 8fba5222be
Some renames concerning the hotbar (#1943)
* Rename HeldItemChangeS2C to match UpdateSelectedSlotC2S

* Fix bad parameter name of swapSlotWithHotbar
2020-12-28 13:08:19 +00:00
Szum123321 27a3bc7045
Added docs for MinecraftServer.save() (#1909)
* couple of SplashScreen names (#1766)

* couple of SplashScreen names

* Update SplashScreen.mapping

* Update MinecraftServer.mapping

Added save method comment and gave names to its arguments.

* Bad indentation

* Update mappings/net/minecraft/server/MinecraftServer.mapping

Co-authored-by: SuperCoder79 <25208576+SuperCoder7979@users.noreply.github.com>

* Update mappings/net/minecraft/server/MinecraftServer.mapping

Co-authored-by: SuperCoder79 <25208576+SuperCoder7979@users.noreply.github.com>

* Update mappings/net/minecraft/server/MinecraftServer.mapping

Co-authored-by: SuperCoder79 <25208576+SuperCoder7979@users.noreply.github.com>

* Changed naming convention.

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Changed naming convention.

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Changed naming convention.

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

Co-authored-by: LoganDark <logandarklock@gmail.com>
Co-authored-by: SuperCoder79 <25208576+SuperCoder7979@users.noreply.github.com>
Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-12-25 23:26:08 +00:00
yyny 839e771f38
Complete StairsBlock mapping (#1936)
```java
BlockState otherState = world.getBlockState(pos.offset(dir));
return !isStairs(otherState)
        || otherState.get(StairsBlock.FACING) != state.get(StairsBlock.FACING)
        || otherState.get(StairsBlock.HALF) != state.get(StairsBlock.HALF);
```

Pretty self-explanatory.

The `isStairs(otherState)` case is irrelevant and only exists to avoid exceptions, this function should only receive other stair blocks.
I don't see a need for `isDifferentlyOrientatedStair` because of this.
2020-12-25 23:25:43 +00:00
YanisBft 992926dd04
Fix javadocs and update Enigma (#1937)
* Fix javadocs and update Enigma

* oops
2020-12-25 23:25:28 +00:00
yyny f6fc193bb8
Complete RecipesProvider mapping (#1939)
* Complete RecipesProvider mapping

* Apply Juuxel's suggestion

Co-authored-by: Juuxel <6596629+Juuxel@users.noreply.github.com>

Co-authored-by: Juuxel <6596629+Juuxel@users.noreply.github.com>
2020-12-25 23:25:13 +00:00
Alex Habich 4cfa0de0fb
Rename FenceBlock.isFence (#1932)
* Rename FenceBlock.isFence -> isCompatibleFence

* Update mappings/net/minecraft/block/FenceBlock.mapping

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>
2020-12-24 12:05:43 +00:00
zml 9a9470a6fa
Map some of the unmapped parts of functions (#1928) 2020-12-23 21:43:49 +00:00
haykam821 6b8b93cb5a
Rename the FullScreenOption class to FullscreenOption (#1933)
* Rename the FullScreenOption class to FullscreenOption

Fixes #1922

* Fix the FullscreenOption mapping file not being renamed
2020-12-23 21:43:38 +00:00
SuperCoder79 ed7e60a9fb
Random misc world gen mappings (#1908)
* Random misc world gen mappings

* Apply suggestions from code review

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-12-23 18:37:43 +00:00
yyny 6bd581026e
Add missing mappings in LevelSummary (#1924)
* couple of SplashScreen names (#1766)

* couple of SplashScreen names

* Update SplashScreen.mapping

* Add missing mappings in LevelSummary

`field_24191` contains a `net.minecraft.text.Text` storing game mode, version, and other level details (such as if cheats are enabled) as a formatted string (This is the third line of text for each level in the list on the world selection screen).
The value of this field is created by `method_27430` and publicly accessible via `method_27429`.

Also mapped the `SaveVersionInfo` member to `versionInfo`, which seems like a no-brainer.

* Reorder `field_24191` to stay alphabetical

Co-authored-by: LoganDark <logandarklock@gmail.com>
2020-12-23 16:47:45 +00:00
Hephaestus-Dev c1edcd1149
Update ModelBakeSettings.mapping (#1927)
This method used to be called `isUvLocked`, and was at some point renamed to `isShaded`, which is a horribly misleading name. I'd just like to change it back to actually describing what it does.
2020-12-23 16:47:35 +00:00
haykam821 1498df0b06
Make the net.minecraft.client.options and net.minecraft.client.gui.screen.options packages singular (#1921)
* Make the net.minecraft.client.options package singular

* Make the net.minecraft.client.gui.screen.options package singular
2020-12-22 20:45:08 +00:00
zml 5a954f6c42
Add a settings.gradle to ensure consistency (#1929)
If no settings file is found, Gradle will assume the project could be a
subproject and will scan any containing directories for a
settings.gradle. This can cause issues if such a file exists, which can
happen when using a composite build to set up a local development
workspace.
2020-12-22 20:27:34 +00:00
jadon 59dbbee406
Fix Material.SUPPORTED -> Material.DECORATION (#1474)
Closes #1467

Signed-off-by: Jadon Fowler <j@jadon.io>
2020-12-17 20:19:50 +00:00
haykam821 471e787c32
Fix some boolean getter methods being prefixed with 'get' (#1920)
* Fix some boolean getter methods being prefixed with 'get'

Fixes #1892

* Fix the setter method for thickening fog in the BossBar class being renamed instead of the getter method
2020-12-17 20:04:22 +00:00
­Sollace d4bd96020f
Effectiveness 2 (#1272)
* isUsingEffectiveTool -> canHarvest, isEffectiveOn -> isSuitableFor

* Apply suggestions from code review

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Drop invalid mappings

* "this method doesn't exist" he said

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>
Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-12-17 20:00:29 +00:00
i509VCB b99cf7dda7
Some client javadoc (#1916)
* Some client javadoc

* Apply suggestions from code review

Co-authored-by: Juuxel <6596629+Juuxel@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

Co-authored-by: Juuxel <6596629+Juuxel@users.noreply.github.com>
Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-12-17 09:07:15 +00:00
modmuss50 9ba8dbc9df 20w51a 2020-12-16 18:52:22 +00:00
Juuxel 5fe0222760
ItemStack.areStacksEqual -> canCombine (#1913) 2020-12-14 21:36:03 +00:00
Juuxel 621f8a88cb
TreeFeature.isDirtOrGrass -> canPlaceTreeOn (#1912)
* TreeFeature.isDirtOrGrass -> isSoilOrFarmland

* canPlaceTreeOn
2020-12-14 21:35:47 +00:00
YanisBft 33da594c95
20w49a cleanup (#1911)
* 20w49a cleanup

* Update Vibration.mapping
2020-12-14 21:35:39 +00:00
yitzy299 80fbe2cea7
Mapped parts of ScreenHandler (#1910)
* Mapped some methods in ScreenHandler

- Mapped method_30010 as removeStack
- Mapped some variable related to these methods
- A few more mappings in ScreenHandler

* Complete requested changes from PR review

- Changed back unrelated methods
- Fixed an area of ambiguity in onSlotClick

* Changed slotid to slotIndex

Fixing issue raised by Juuxel
2020-12-09 13:21:10 +00:00
Shnupbups d05efed548
20w49a stuff (#1903)
* fuck it i'm committing and going to bed

here's what i got

* lots of misc stuff

haha yes

* Delete class_5700.mapping
2020-12-09 12:21:32 +00:00
Taavi Väänänen 882d18f793
Add some villager mappings (#1907)
* Add some villager mappings

* Apply suggestions from code review

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-12-06 18:04:59 +00:00
SuperCoder79 b095467b34
Dripstone mappings (#1904)
* Dripstone mappings

* move DripstoneColumn to world/gen

* Apply suggestions from code review

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* move dripstone utils to feature/util

Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-12-03 19:51:28 +00:00
Shnupbups b06cc505e0
48a things (#1894)
* 48a things

* stuff

* Apply suggestions from code review

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>

* just to get checks running again

* Revert "just to get checks running again"

This reverts commit 509ab81d80.

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>
2020-12-03 19:50:38 +00:00
­Sollace c0a046c665
Model part names (#1900)
* Update all the models fields that come from Mojang's json code

* Unswap tailAngle and spikeExtension fields

* Fill in missing names in MathHelper

* Apply suggestions from code review

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* More code review fixes

Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-12-03 13:51:45 +00:00
Taavi Väänänen a579fc53ee
Add some brain mappings (#1901)
* Add some brain mappings

* Be consistent with rest of that class
2020-12-03 13:50:56 +00:00
modmuss50 db6fa87282 20w49a 2020-12-02 18:29:46 +00:00
­Sollace 1766e41fb5
ResourceManager documentation (#1898)
* add documentation for the ResourceManager

* Apply suggestions from code review

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-12-02 14:37:53 +00:00
YanisBft 768f78c0ac
Game mode stuff (#1899)
* Game mode stuff

* working javadocs are better

* Update TutorialManager.mapping
2020-12-02 14:37:37 +00:00
YanisBft 9de49c608f
Some client mappings (#1888) 2020-11-29 22:05:47 +00:00
SPGoding 6596cd0f81
Map something for experience orb (#1893)
* Map something for experience orb

* Remap method_30048
2020-11-29 22:05:30 +00:00
YanisBft ce0c5cae51
client.util.math.Vector3f -> util.math.Vec3f (#1879)
* client.util.math.Vector3f -> util.math.Vec3f

* Vec to Vector

* Revert "Vec to Vector"

This reverts commit 844d3cb107.

* simple class docs

* better word
2020-11-28 13:44:50 +00:00
YanisBft 223b18672b
Dripstones (#1891)
* Dripstones

* improvements
2020-11-28 13:44:11 +00:00
Juuxel cd420dc1c6
Map tooltip rendering methods (#1895) 2020-11-28 13:44:04 +00:00
Juuxel f5c578feb1
Rename TooltipComponent factory methods to of (#1896) 2020-11-27 20:19:36 +00:00
modmuss50 b4c1720de7 20w48a 2020-11-25 18:55:46 +00:00
Emily Rose Alexandra 388cfed632
TooltipComponent related mappings (#1874)
* TooltipComponent related mappings

* Add missing Item and ItemStack mappings

* Correct width height mismatch

* Change to OrderedTextTooltipComponent

* Rename OrderedTextTooltip.mapping to OrderedTextTooltipComponent.mapping

* Moved tooltip components to nm.client.gui.tooltip
2020-11-22 12:49:40 +00:00
i509VCB 42277f341c
Some text renderer javadoc (#1878)
* Some text renderer javadoc

* Update mappings/net/minecraft/client/font/TextRenderer.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Update mappings/net/minecraft/client/font/TextRenderer.mapping

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>

* Update mappings/net/minecraft/client/font/TextRenderer.mapping

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>

* Update mappings/net/minecraft/client/font/TextRenderer.mapping

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>

* Update TextRenderer.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>
Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>
2020-11-22 12:49:30 +00:00
YanisBft 40d713533d
Fix javadoc warnings (#1884)
* Fix javadoc warnings

* attempt 2

* attempt 3

* last attempt

* apply juuxel's comment
2020-11-20 17:31:04 +00:00
enbrain ea7929ac46
Suggest using Block#asItem instead of Item.fromBlock (#1743) 2020-11-19 18:37:53 +00:00
enbrain 5c96ea3f69
Complete DoorBlock (#1885) 2020-11-19 13:35:52 +00:00
MounderFod 29ec35b5d7
Added GameModeSelection and CameraSubmersionEnvironment (#1882)
* Added GameModeSelection and CauldronFluids

* Renamed enums, moved to relevant places.

* Refactored ClientCauldronFluid to CameraSubmersionType.

* Camera.getSubmergedFluidState -> Camera.getSubmersionType

* Camera.getSubmergedFluidState -> Camera.getSubmersionType

* Added javadoc to GameModeSelection.mapping

* Fixed Javadoc.

* Added some more Javadoc.
2020-11-18 12:05:09 +00:00
haykam821 c55751331e
Map classes and methods relating to powder snow and freezing (#1865)
* Map classes relating to powder snow

* Map methods used to manage freezing

* Move the PowderSnowBucketItem class to the correct package

* Rename the subtractWaterLevel method to decrementFluidLevel in the LeveledCauldronBlock class

* Remove the implicit mapping for the POWDER_SNOW_BUCKET field

Co-authored-by: Juuxel <6596629+Juuxel@users.noreply.github.com>

Co-authored-by: Juuxel <6596629+Juuxel@users.noreply.github.com>
2020-11-18 12:02:57 +00:00
Juuxel 0ba0cc7c63
Scoreboard mappings (#1880)
* Improve scoreboard mappings

* Add some jd

* ScoreboardCriterion.OBJECTIVES -> CRITERIA

* ScoreboardCriterion.createStatCriterion -> getOrCreateStatCriterion

* Update mappings/net/minecraft/scoreboard/ScoreboardPlayerScore.mapping

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>
2020-11-16 18:39:56 +00:00
Thalia Nero 588d00e97f
Map NBT tag visitors. (#1837)
* Map NBT tag visitors.

* Push modifications.
2020-11-16 18:39:41 +00:00
Juuxel f3110a9a3c
Map StatType.name (#1881)
* Map StatType.getDisplayName

* StatType.displayName -> name
2020-11-15 18:37:16 +00:00
enbrain 28001a32df
Add mappings for option stuff (#1872)
* Add mappings for option stuff

* Fix typo: Value -> value
2020-11-15 17:08:07 +00:00
enbrain 520305c610
Fix params in RealmsSlotOptionsScreen (#1875)
Co-authored-by: Reece <reece@rjward.net>

Co-authored-by: Reece <reece@rjward.net>
2020-11-14 13:30:38 +00:00
haykam821 6cba124d0b
Map the remaining static Text fields (#1747)
* Map the remaining static Text fields

* Remove an incorrect mapping for a volatile field

* Fix a typo in the mapping for result folder text static field

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Improve static Text field suffixes

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Remove a stray argument mapping in the RealmsSelectWorldTemplateScreen class

Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-11-14 12:23:59 +00:00
LoganDark 2d4368146d
couple of SplashScreen names (#1766)
* couple of SplashScreen names

* Update SplashScreen.mapping
2020-11-14 12:16:47 +00:00
YanisBft 7ef965e06e
20w46a loot stuff (#1867) 2020-11-14 12:11:22 +00:00
enbrain fc19740be8
Update InGameHud (#1871) 2020-11-14 12:10:29 +00:00
Thalia Nero e0df01cad6
Entity rendering (#1861)
* Map entity model classes.

* Map new stuff in entity renderers.

* - EntityModelParts -> EntityModels
- ModelPartGroup -> ModelPartData
- ModelPartData -> ModelPartDataNode
- TexturedModelPartGroup -> TexturedModelPartData

* Apply suggestions from code review

Co-authored-by: Gegy <gegy1000@gmail.com>

* Apply other suggestions

* Update mappings/net/minecraft/client/model/TexturedModelData.mapping

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Remap *PartData -> *ModelData, move Dilation to client.util.math

* Update crobbed mapping.

Co-authored-by: Gegy <gegy1000@gmail.com>
Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-11-12 08:57:40 +00:00
YanisBft 8e8c52ea2f
20w46a new particle (#1868) 2020-11-12 08:55:25 +00:00
YanisBft 8b0ff579df
20w46a item command (#1866) 2020-11-12 08:53:30 +00:00
Shnupbups cb23ebee38
46a things (#1869)
* 46a things

* Update Registry.mapping

* Update Item.mapping
2020-11-12 08:52:04 +00:00
modmuss50 fc87d2d7de Fix build failure 2020-11-11 19:44:52 +00:00
modmuss50 b14dbfa228 Merge remote-tracking branch 'modmuss50/github-actions' into 20w46a 2020-11-11 19:28:43 +00:00
modmuss50 3e78db4504 20w46a 2020-11-11 19:27:23 +00:00
haykam821 946eac0e88
Map the candles property in the Properties class (#1864) 2020-11-11 16:25:09 +00:00
haykam821 3465a11323
Map classes relating to candles (#1844)
* Map classes relating to candles

* Use the same names for property fields in AbstractCandleBlock subclasses

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Simplify the name of the AbstractBlock.testIfInTag method

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

* Rename the AbstractBlock.Settings.materialColor method to match the new class name

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-11-08 14:36:09 +00:00
YanisBft bbf3086597
Misc things (#1862) 2020-11-08 14:35:59 +00:00
YanisBft 1f41ce6d77
Amethyst blocks & block sound groups (#1859) 2020-11-07 23:21:15 +00:00
Thalia Nero 7180076edd
Map chest state managers. (#1838)
* Map chest state managers.

* Update lid animator mappings.

* Update ChestStateManager.mapping

* Removed unused mapping file.

* Apply suggestions from code review

Co-authored-by: YanisBft <doublecraft.official@gmail.com>

Co-authored-by: YanisBft <doublecraft.official@gmail.com>
2020-11-07 23:17:37 +00:00
Thalia Nero b0078fdaeb
Block Entity renderer factories and dirt path datafixer (#1848)
* Block Entity renderer factories and dirt path datafixer

* Context
2020-11-07 23:17:14 +00:00
Florens Pauwels 118da214ba
Add LivingEntity shouldsSwimInFluids (#1860)
Co-authored-by: Florens Pauwels <mail@florens.be>
2020-11-07 23:16:57 +00:00
enbrain f1144cf71d
Add mappings for MoreOptionsDialog and related classes (#1827) 2020-11-07 13:12:49 +00:00
YanisBft 34b70efdb0
Some EntryListWidget and entity methods and javadocs (#1812)
* Some EntryListWidget and entity methods and javadocs

* Update mappings/net/minecraft/entity/mob/PiglinEntity.mapping

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>

* Update mappings/net/minecraft/client/gui/widget/EntryListWidget.mapping

Co-authored-by: Gegy <gegy1000@gmail.com>

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>
Co-authored-by: Gegy <gegy1000@gmail.com>
2020-11-07 13:11:45 +00:00
enbrain 02e09de6e1
Complete WorldUpdator (#1855) 2020-11-07 12:51:54 +00:00
enbrain c60ad89896
Add mappings for InGameHud and related classes (#1856) 2020-11-07 12:51:43 +00:00
Toshimichi0915 e54760827a
Fix Entity#MAX_ENTITY_ID to Entity#ENTITY_ID_COUNTER(#1825) (#1858) 2020-11-07 12:51:21 +00:00
modmuss50 e9a48b1a86 fix 2020-11-06 23:39:43 +00:00
modmuss50 d0f4bd3e59 Use github actions to publish releases 2020-11-06 23:33:17 +00:00
Emily Rose Alexandra ee05e2b403
Bundle related methods (#1843)
* Bundle related methods

* Update mappings/net/minecraft/item/Item.mapping

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>

* Update mappings/net/minecraft/item/Item.mapping

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>

* Match ItemStack with Item methods

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>
2020-11-06 22:51:37 +00:00
enbrain e308a8a7f5
Add mappings for class_5539 (HeightLimitView) (#1850)
* Add mappings for class_5539 (HeightLimit)

* HeightLimit -> HeightLimitView
2020-11-06 14:27:29 +00:00
enbrain c49407c27f
Add mappings for classes related to server resource packs (#1841) 2020-11-06 14:26:35 +00:00
LambdAurora 65b7048e2d
Add mappings for VertexFormat changes. (#1852)
* Add mappings for VertexFormat changes.

* Update mappings/net/minecraft/client/render/VertexFormat.mapping

Co-authored-by: SuperCoder79 <25208576+SuperCoder7979@users.noreply.github.com>

Co-authored-by: SuperCoder79 <25208576+SuperCoder7979@users.noreply.github.com>
2020-11-06 14:25:59 +00:00
LambdAurora bcbbc58af5
20w45a player mappings! (#1853) 2020-11-06 14:25:29 +00:00
enbrain 0b512f737d
Add mappings for matrix classes (#1854) 2020-11-06 14:25:09 +00:00
Shnupbups 1e46390347
20w45a things (#1833)
* Things

* Update AbstractCauldronBlock.mapping

* a few more things

* Create EntityModelLayers.mapping

* Update MinecraftVersion.mapping

* Update Oxidizable.mapping
2020-11-06 14:24:34 +00:00
AlexIIL dd60a9b973
BlockEntity tick and creation (#1836)
* Minor BlockEntity ticking names.

* And some more.

* More.

* More.

* Map a lot more BlockEntity.tick methods.

* World mappings.

* Javadoc for BlockWithEntity.checkTYpe.

* Name params.

* Map BlockEntityType.class_5559 as BlockEntityCreator

* Rename BeehiveBlockEntity.tick to tickServer as it's not used on the client.

* WorldChunk.emptyBlockEntityTicker -> EMPTY_BLOCK_ENTITY_TICKER

* tickServer -> serverTick and tickClient -> clientTick

* WorldChunk.method_31718 -> wrapTicker (rather than createTicker, as this is more accurate).

* Map WorldChunk.method_31715 as canTickBlockEntities.

* DirectBlockEntityTicker -> BlockEntitytTickInvoker

* "ChunkBlockEntityTicker" -> "BlockEntityTickInvoker".

* Bring back "direct" instead of "impl".

* "null*" -> "empty*"

* BlockEntityCreator -> BlockEntityFactory.

* CampfireBlockEntity: tickUnlit/tickLit -> unlitServerTick/litServerTick

* creator/supplier -> factory in BlockEntityType.
2020-11-06 12:49:58 +00:00
LambdAurora e0043013e9
Resource mappings. (#1842)
* Resource mappings.

* setLanguage
2020-11-06 12:49:38 +00:00
YanisBft 4e19194c55
Almost completed social interactions (#1846) 2020-11-06 12:49:22 +00:00
Deximus-Maximus 39b54d09e2
MaterialColor -> MapColor (#1397)
* MaterialColor -> MapColor

* MaterialColor -> MapColor

* revert accidental rename

* clarify hashmap vs item map

* Update mappings/net/minecraft/block/MapColor.mapping

Co-authored-by: liach <7806504+liach@users.noreply.github.com>

* Update mappings/net/minecraft/block/MapColor.mapping

Co-authored-by: Chloe Dawn <chloe@sapphic.dev>

* change method names

* Fix capitalization errors

* implement feedback

Co-authored-by: liach <7806504+liach@users.noreply.github.com>
Co-authored-by: Chloe Dawn <chloe@sapphic.dev>
2020-11-05 23:53:41 +00:00
SuperCoder79 0d97db6c61
Geode and geode generation mappings (#1847) 2020-11-05 23:40:41 +00:00
i509VCB 081cd51667
Initial entity management mappings (#1845)
There are a few unnamed classes but I feel those need a further look for their purpose or discussion on proper names.
2020-11-05 23:40:31 +00:00
joaoh1 51b2b77362
Map spyglass logic (#1834)
Co-authored-by: joaoh1 <joaoh1@users.noreply.github.com>
2020-11-05 19:37:46 +00:00
LambdAurora b44b26d435
Add entity mappings (#1829)
* Add entity mappings

* Add javadoc to dismountVehicle.
2020-11-05 09:41:29 +00:00
enbrain b09b6a53b5
Add mappings for MinecraftVersion and SharedConstants (#1840) 2020-11-05 09:39:19 +00:00