L2JMobius

Free Users => Bug Reports => Topic started by: tse38 on June 08, 2020, 05:38:06 AM

Title: Offline private creation
Post by: tse38 on June 08, 2020, 05:38:06 AM
Hi , i have a problem on my server with offline private creation. Offline private creation is enabled. When shop is set and then i exit , cant use it. I click to craft on something and nothing happens, no create, no mp consumed. If i restart server after i set shop, it magically works. Any idea ? thx
Title: Re: Offline private creation
Post by: rock76 on April 20, 2021, 10:12:30 PM
Since this (someones work and effort sharing this) helped me, I feel a duty to pay back and help someone else. This worked for me:
java/org/l2jmobius/gameserver/RecipeController.java

             return;
          }

-         if (_player.isOnline() || _target.isOnline())
+         if (!_player.isOnline() || !_target.isOnline())

          {
             LOGGER.warning("Player or target is not online, aborting " + _target + _player);

             abort();
Title: Re: Offline private creation
Post by: Mobius on April 20, 2021, 10:23:47 PM
I think that is disabled on latest shared version.