mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Fixed a server crash with the packet handler
This commit is contained in:
parent
881a2006c2
commit
3a00e2663c
1 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@
|
|||
|
||||
package de.ellpeck.actuallyadditions.mod.network;
|
||||
|
||||
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
||||
import de.ellpeck.actuallyadditions.mod.data.PlayerData;
|
||||
import de.ellpeck.actuallyadditions.mod.data.WorldData;
|
||||
import de.ellpeck.actuallyadditions.mod.network.gui.IButtonReactor;
|
||||
|
@ -151,7 +152,7 @@ public final class PacketHandler{
|
|||
}
|
||||
}
|
||||
else{
|
||||
player = Minecraft.getMinecraft().player;
|
||||
player = ActuallyAdditions.proxy.getCurrentPlayer();
|
||||
}
|
||||
|
||||
if(player != null){
|
||||
|
|
Loading…
Reference in a new issue