OniBait
303288e8b1
Merge branch 'upstream/master'
2013-10-08 19:04:54 -05:00
OniBait
eb5940664c
Add block break events based on @bloodmc's initial 1.5.2 Pull Request
2013-10-08 19:00:02 -05:00
Eurymachus
8d0b58ee6f
Added PlayerOpenContainerEvent and added ForgeHooks.canInteractWith
...
- Used to override the canInteractWith during player tick
- setResult to ALLOW/DENY as required
- Defaults to Vanilla behaviour in any other instance.
Required for LittleBlocks Mod and to Assist Gullivers Mod
2013-10-06 03:58:13 +01:00
OniBait
296a484f4b
Add block break events based on @bloodmc's initial 1.5.2 Pull Request
2013-10-04 00:15:19 -05:00
Lex Manos
cba1de122a
Bump version number for todays changes.
2013-09-30 17:17:35 -07:00
Lex Manos
2e3d1a3c09
Add cancelable EntityStructByLightningEvent, Closes #789
2013-09-30 16:56:34 -07:00
Lex Manos
96b4fd1da1
Stack sensitive version of Item.getItemStackLimit. Closes #771
2013-09-30 16:21:40 -07:00
Lex Manos
b74d977225
Added all the vanilla records to the ore dictionary. Closes #731
2013-09-30 14:58:03 -07:00
Lex Manos
71ececdbb4
Set densityDir in BlockFluidBase's constructor, closes #737
2013-09-30 14:02:23 -07:00
LexManos
e4714bc4c5
Merge pull request #796 from HoBoS-TaCo/master
...
Added ItemTooltipEvent
2013-09-29 19:55:14 -07:00
HoBoS_TaCo
06e2f914c1
Added ItemTooltipEvent
...
This event is fired at the end of ItemStack.getTooltip(EntityPlayer, boolean), which in turn is called from it's respective GUIContainer. It allows an itemstack's tooltip to be changed depending on the player, itemstack or whether the advanced information on item tooltips is being shown, toggled by F3+H.
2013-09-30 12:41:52 +10:00
Lex Manos
dbd19b0cad
Fixed typo in bounding box based ladder checks that caused potential infinite loops with entities in certian positions. Thanks Overmind for reporting it.
2013-09-24 22:46:18 -07:00
Lex Manos
70671858c2
Remove some side onlys on BiomeEvents that don't need them.
2013-09-24 21:43:56 -07:00
CovertJaguar
71c14b815e
Fluid Rarity should have a default
...
Oops.
2013-09-23 22:54:46 -07:00
Alexander Behrhof
be8bccc72e
Correcting SoundManager Transformer
2013-09-21 14:30:22 -04:00
Lex Manos
f58df75bea
Remove duplicate access transformer
2013-09-19 16:46:30 -07:00
Lex Manos
d39c279203
Make MapGenStructureIO name registration functions public, Any mod that has anything extending StructureStart or StructureComponent must register there classes and create a default (no parameter) constructor.
2013-09-18 20:52:52 -07:00
Lex Manos
0a7095afa9
Unfinalized Item.getIconIndex(ItemStack)
2013-09-18 19:33:28 -07:00
Lex Manos
57ea20d083
Bump version for new MC version.
2013-09-18 16:10:55 -07:00
Lex Manos
6c5ef9347c
Updated FML:
...
MinecraftForge/FML@da70cdd35a Update tweaker for new Launcher API
MinecraftForge/FML@352117fd78 Update for new installer and thank you.
MinecraftForge/FML@40a34af431 Merge branch 'master' into newtweak
MinecraftForge/FML@e77d2547ad Update for pre-ninja 1.6.3 update
MinecraftForge/FML@34493b0d99 Update for real 1.6.3 update
MinecraftForge/FML@95afc95b24 Update mcp mod info
MinecraftForge/FML@ff75416a32 Update mc_versions data and commands patch and eclipse workspace
MinecraftForge/FML@8f2e675581 Update the src distro's eclipse workspace.
2013-09-18 16:10:38 -07:00
Christian
635f13f825
Fix broken PR from vilml. TEST!
2013-09-14 18:13:58 -04:00
viliml
ac58bb2f5a
Prevent NPE in fluid lookup for block
2013-09-14 20:16:46 +02:00
cpw
a066018c9f
Merge pull request #782 from CovertJaguar/patch-1
...
Allow Fluids to have Rarities
2013-09-14 05:17:34 -07:00
CovertJaguar
b626c888b0
Allow Fluids to have Rarities
...
Used for tool tips.
2013-09-13 20:17:12 -07:00
Christian
492cbc3628
Move stuff around a bit- also tie range and enabled to options.
2013-09-13 22:11:59 -05:00
Christian
f9728e8f3f
Redo harvest event. This time with simpler logic, that should be less liable to weird "missing" stuff.
2013-09-07 00:10:08 -04:00
Christian
d9ca67e162
Change from Cancelable to using a Result. This means you can force despawn mobs you
...
don't want around anymore. Also, deferred check to once every 20 ticks. May tune it
down further or make it a config if this event is a lag issue.
2013-09-06 16:05:29 -04:00
Daniel García
ff655de27e
Create es_ES.lang
2013-09-06 13:28:48 -04:00
Christian
6da6e9da07
Add a cancellable despawn event- allows mods to decide to prevent the despawning
...
of certain otherwise normally despawnable mobs.
2013-09-06 13:19:51 -04:00
Christian
c63efa917d
Add some javadoc to the HarvestBlock event.
2013-09-05 16:24:50 -04:00
Christian
7544055fa4
Clean up some formatting.
2013-09-05 13:16:01 -04:00
Christian
99c6662f9d
Add in a block reverse lookup for fluids. Closes #749
2013-09-05 12:08:16 -04:00
Christian
ca0e32cfd2
Add a harvestblock event, to allow mods to intercept and change the drops for blocks. Don't abuse this, or we'll have to take safety measures.
...
Fires for both silktouch and non-silktouch harvesting, and provides the player. Note, you may need to
change your break overrides to pass on the player for best results.
2013-09-05 11:57:27 -04:00
Christian
c84d99aa22
Defer firing CreateDecorator until it's likely mods have had a chance to register their listener. Should close #759
2013-09-05 10:08:02 -04:00
Christian
8c2e171a16
Merge branch 'master' of github.com:mhahn1976/MinecraftForge into sometweaks
2013-09-05 08:26:11 -04:00
Christian
4fb8eb96d0
Merge branch 'french' of github.com:robin4002/MinecraftForge into sometweaks
2013-09-05 08:23:29 -04:00
Christian
df132a0296
Merge branch 'displayname' of github.com:MachineMuse/MinecraftForge into sometweaks
...
Conflicts:
patches/minecraft/net/minecraft/entity/player/EntityPlayer.java.patch
2013-09-05 08:20:49 -04:00
Christian
cf88896ad7
Update version to 9.10.1 for mcp naming changes.
2013-09-03 18:09:07 -04:00
Christian
0d44234239
Update forge for MCP naming updates
...
Updated FML:
MinecraftForge/FML@d0c6e92900 Update MCP data
2013-09-03 18:04:12 -04:00
MachineMuse
0e3037e85d
Added display name hook
2013-09-03 14:55:11 -06:00
Christian
4eb05ed571
Small fix to container registry. emptyContainer is not null, it's "NULL_EMPTYCONTAINER" now and won't match any valid container.
2013-08-28 22:16:59 -04:00
robin
90be31ddc8
create french localization
2013-08-28 13:14:30 +02:00
Christian
dddb9b3189
Add some starting work for a forge tps command. Also update coremod for new FML behaviour
2013-08-27 23:07:30 -04:00
Michael Hahn
cc96840aa8
capacity was not respected
...
Updated to properly calculate the amount of free space in the tank
before checking that against the amount of the resource.
2013-08-26 12:21:31 -05:00
LexManos
faba7e2a07
Skipp toss event for null entity items. Closes #732
2013-08-19 10:45:57 -07:00
LexManos
461a30812b
Fix bug with custom Fluids. You can now drown in them!
2013-08-18 23:16:36 -07:00
Soaryn
8c762223a4
Adds Temperature to Lava
...
Missing lava temperature. Feel free to change it to any value.
1300K is the typical max for Magma so wasn't sure what was desired. Regardless, better than the same temp as water at 295K 😄
2013-08-15 19:55:15 -04:00
LexManos
97f6138cf8
Merge pull request #606 from Shukaro/master
...
Add stone and cobblestone to ore dictionary
2013-08-10 23:29:01 -07:00
LexManos
d304f40295
Merge pull request #717 from tommy1019/patch-3
...
Fixed Fluid Non-Solid Block Duplication
2013-08-10 19:47:21 -07:00
LexManos
ffd4b38801
Add optional feature to check entire bounding box for ladders. Closes #709
2013-08-10 19:39:06 -07:00