recieve -> receive

This commit is contained in:
Anuken
2020-07-14 11:16:32 -04:00
parent da577a0db2
commit f9b6b8e5b7
17 changed files with 47 additions and 47 deletions

View File

@@ -48,9 +48,9 @@ public class EventType{
public static class TurnEvent{}
/** Called when the player places a line, mobile or desktop.*/
public static class LineConfirmEvent{}
/** Called when a turret recieves ammo, but only when the tutorial is active! */
/** Called when a turret receives ammo, but only when the tutorial is active! */
public static class TurretAmmoDeliverEvent{}
/** Called when a core recieves ammo, but only when the tutorial is active! */
/** Called when a core receives ammo, but only when the tutorial is active! */
public static class CoreItemDeliverEvent{}
/** Called when the player opens info for a specific block.*/
public static class BlockInfoEvent{}
@@ -307,7 +307,7 @@ public class EventType{
}
}
/** Called after connecting; when a player recieves world data and is ready to play.*/
/** Called after connecting; when a player receives world data and is ready to play.*/
public static class PlayerJoin{
public final Player player;

View File

@@ -140,14 +140,14 @@ public class SectorInfo{
}
}
/** @return the items in this sector now, taking into account production and items recieved. */
/** @return the items in this sector now, taking into account production and items received. */
public ObjectIntMap<Item> getCurrentItems(Sector sector){
ObjectIntMap<Item> map = new ObjectIntMap<>();
map.putAll(coreItems);
long seconds = sector.getSecondsPassed();
production.each((item, stat) -> map.increment(item, (int)(stat.mean * seconds)));
//increment based on recieved items
sector.getRecievedItems().each(stack -> map.increment(stack.item, stack.amount));
//increment based on received items
sector.getReceivedItems().each(stack -> map.increment(stack.item, stack.amount));
return map;
}