From 6b1a975701d7fff7e78faf322aaa12782e30daf9 Mon Sep 17 00:00:00 2001 From: thatsIch Date: Sun, 21 Sep 2014 02:20:22 +0200 Subject: [PATCH] Typo isDiffrent --- me/storage/MEMonitorIInventory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/me/storage/MEMonitorIInventory.java b/me/storage/MEMonitorIInventory.java index 7ae60178..c860ea3b 100644 --- a/me/storage/MEMonitorIInventory.java +++ b/me/storage/MEMonitorIInventory.java @@ -179,7 +179,7 @@ public class MEMonitorIInventory implements IMEInventory, IMEMonit ItemStack newIS = is == null || is.isExtractable == false && mode == StorageFilter.EXTRACTABLE_ONLY ? null : is.getItemStack(); ItemStack oldIS = old == null ? null : old.itemStack; - if ( isDiffrent( newIS, oldIS ) ) + if ( isDifferent( newIS, oldIS ) ) { CachedItemStack cis = new CachedItemStack( is.getItemStack() ); memory.put( is.slot, cis ); @@ -246,7 +246,7 @@ public class MEMonitorIInventory implements IMEInventory, IMEMonit return changed ? TickRateModulation.URGENT : TickRateModulation.SLOWER; } - private boolean isDiffrent(ItemStack a, ItemStack b) + private boolean isDifferent(ItemStack a, ItemStack b) { if ( a == b && b == null ) return false;