This commit is contained in:
Anuken 2019-03-09 23:06:55 -05:00
parent 98212df076
commit 376495836a

View File

@ -91,6 +91,12 @@ public class Bullet extends SolidEntity implements DamageTrait, ScaleTrait, Pool
create(type, null, Team.none, x, y, angle);
}
/**ok*/
@Remote(called = Loc.server)
public static void createBullet(BulletType type, Team team, float x, float y, float angle){
create(type, null, team, x, y, angle);
}
public Entity getOwner(){
return owner;
}