Skip to content
This repository has been archived by the owner on Feb 9, 2018. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Muirrum committed Oct 16, 2017
1 parent c157e8d commit d687d54
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Matter Overdrive
![alt tag](https://raw.githubusercontent.com/simeonradivoev/MatterOverdrive/master/MatterOverdriveLogo.png)

<!--
<h2 align="center">
<a href='https://mo.simeonradivoev.com/'>Website</a> |
<a href='https://mo.simeonradivoev.com/category/gettingstarted/'>Getting Started</a> |
<a href='https://mo.simeonradivoev.com/category/faq/'>FAQ</a> |
<a href='https://mo.simeonradivoev.com/download_category/downloads/'>Downloads</a> |
<a href='https://mo.simeonradivoev.com/builds/'>Dev Builds</a>
</h2>

-->
[![Build Status](https://travis-ci.org/simeonradivoev/MatterOverdrive.svg?branch=1.8.9)](https://travis-ci.org/simeonradivoev/MatterOverdrive)

## Table of Contents
Expand All @@ -28,6 +28,7 @@ Although it may seem overpowered, Matter Overdrive takes a more realistic approa
* [Simeon Radivoev]([email protected]) (DEPRECATED)
* [Dev_Osmium](mailto:[email protected])
* [@DevOsmium](https://twitter.com/DevOsmium)
* [Website](http://devosmium.ddns.net/matteroverdrive/matteroverdrive.html)
* IRC: **#matteroverdrive** at **irc.esper.net**

## Features
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mo_base_name=MatterOverdrive
########################################
mc_version=1.10.2
mcp_mappings=snapshot_20160719
mod_version=0.5.1
mod_version=0.5.3
forge_version = 12.18.3.2239

#########################################
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/matteroverdrive/entity/EntityDrone.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void write(@Nonnull PacketBuffer buf, @Nonnull Optional<UUID> value)

@Nonnull
@Override
public Optional<UUID> read(@Nonnull PacketBuffer buf) throws IOException
public Optional<UUID> read(@Nonnull PacketBuffer buf)
{
return buf.readBoolean() ? Optional.of(buf.readUuid()) : Optional.empty();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public WeightedRandomMOWorldGenBuilding(MOWorldGenBuilding worldGenBuilding, int

public int getWeight(Random random, World world, BlockPos pos)
{
return worldGenBuilding.shouldGenerate(random, world, pos) && worldGenBuilding.isLocationValid(world, pos) ? itemWeight : Math.max(1, (int)(itemWeight * 0.1));
return worldGenBuilding.shouldGenerate(random, world, pos) && worldGenBuilding.isLocationValid(world, pos) ? itemWeight : Math.max(1, (int)(itemWeight * 0.5));
}
}

0 comments on commit d687d54

Please sign in to comment.