Transcendent zones renamed to timed hunting.

This commit is contained in:
MobiusDevelopment
2022-04-01 22:09:34 +00:00
parent d520ed36e8
commit ded25bb320
126 changed files with 166 additions and 166 deletions

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.TranscendentZone;
package instances.TimedHunting;
import org.l2jmobius.gameserver.data.xml.TimedHuntingZoneData;
import org.l2jmobius.gameserver.instancemanager.InstanceManager;
@@ -28,7 +28,7 @@ import instances.AbstractInstance;
/**
* @author Mobius
*/
public class TranscendentZone extends AbstractInstance
public class TimedHunting extends AbstractInstance
{
// NPCs
private static final int PATROL_TELEPORTER = 34568;
@@ -40,7 +40,7 @@ public class TranscendentZone extends AbstractInstance
1013 // Corroded Fields
};
public TranscendentZone()
public TimedHunting()
{
super(TEMPLATE_IDS);
addStartNpc(PATROL_TELEPORTER, PATROL_GUARD);
@@ -89,6 +89,6 @@ public class TranscendentZone extends AbstractInstance
public static void main(String[] args)
{
new TranscendentZone();
new TimedHunting();
}
}