/** マーカーを表示する */
  public static void setDummyEntity(
      Entity owner, int color, double posx, double posy, double posz) {
    if (!isEnable) return;
    if (!MMM_Helper.isClient) return;

    // サーバー側でしか呼ばれないっぽい
    if (owner.worldObj.isRemote) {
      MMMLib.Debug("L");
    }

    MMM_EntityDummy ed = new MMM_EntityDummy(Client.getMCtheWorld(), color, owner);
    ed.setPosition(posx, posy, posz);
    appendList.add(ed);
  }