Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
way2muchnoise committed Feb 14, 2016
1 parent 83197b0 commit 7debdc7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version_forge=11.15.1.1722
version_minecraft=1.8.9
version_major=0
version_minor=3
version_revis=2
version_revis=3
version_mappings=snapshot_20160101
version_jei=2.25+
version_thaumcraft=5.1.6
9 changes: 8 additions & 1 deletion src/main/java/jeresources/api/IMobRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,15 @@ public interface IMobRegistry
void register(EntityLivingBase entity, LightLevel lightLevel, int exp, DropItem... drops);
void register(EntityLivingBase entity, LightLevel lightLevel, int minExp, int maxExp, DropItem... drops);

void registerDrops(Class<? extends EntityLivingBase> entity, DropItem... drops);
/**
* Adds drops to mobs use {@link WatchableData} to add some more specifics to define the mob
*
* @param entity entity {@link Class} extending {@link EntityLivingBase}
* @param watchableData the {@link WatchableData} to define the extra terms
* @param drops drops to be added
*/
void registerDrops(Class<? extends EntityLivingBase> entity, WatchableData watchableData, DropItem... drops);
void registerDrops(Class<? extends EntityLivingBase> entity, DropItem... drops);

/**
* Add a hook for scissoring in the mob view
Expand Down

0 comments on commit 7debdc7

Please sign in to comment.