Skip to content

Commit

Permalink
Fixing an infinite recursion case, Closes #916
Browse files Browse the repository at this point in the history
  • Loading branch information
LexManos committed Jan 4, 2014
1 parent bb75611 commit df0b175
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
- double d0 = par1Entity.posX;
- double d1 = par1Entity.posZ;
- double d2 = 8.0D;
+ transferEntityToWorld(par1Entity, par2, par3WorldServer, par4WorldServer);
+ transferEntityToWorld(par1Entity, par2, par3WorldServer, par4WorldServer, par4WorldServer.getDefaultTeleporter());
+ }
+
+ public void transferEntityToWorld(Entity par1Entity, int par2, WorldServer par3WorldServer, WorldServer par4WorldServer, Teleporter teleporter)
Expand Down

0 comments on commit df0b175

Please sign in to comment.