Skip to content

Commit

Permalink
Update version to 1.1.4-rc1
Browse files Browse the repository at this point in the history
Fix autosave delay and period
  • Loading branch information
OliverSchlueter committed May 1, 2023
1 parent 609fd15 commit c3d3880
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[![Generic badge](https://img.shields.io/badge/version-1.1.3-green.svg)](https://shields.io/)
![Latest Version](https://img.shields.io/github/v/release/FancyMcPlugins/FancyNpcs?style=flat-square)
[![Discord](https://img.shields.io/discord/899740810956910683?color=7289da&logo=Discord&label=Discord&style=flat-square)](https://discord.gg/ZUgYCEJUEx)
![GitHub Downloads](https://img.shields.io/github/downloads/FancyMcPlugins/FancyNpcs/total?logo=GitHub&style=flat-square)
[![SpigotMC Downloads](https://badges.spiget.org/resources/downloads/spigotmc-orange-107306.svg)](https://www.spigotmc.org/resources/npc-plugin-1-19-4.107306/)
[![Downloads](https://img.shields.io/modrinth/dt/fancynpcs?color=00AF5C&label=modrinth&style=flat&logo=modrinth)](https://modrinth.com/plugin/fancynpcs/versions)

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "de.oliver"
version = "1.1.3"
version = "1.1.4-rc1"
description = "NPC plugin"

java {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/oliver/fancynpcs/FancyNpcs.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public void onEnable() {
Bukkit.getScheduler().scheduleSyncRepeatingTask(instance, () -> {
getLogger().info("Automatically saving npcs");
npcManager.saveNpcs(false);
}, 20L, 20L*30);
}, 20L*60*5, 20L*60*15);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: FancyNpcs
main: de.oliver.fancynpcs.FancyNpcs
author: OliverHD
version: 1.1.3
version: 1.1.4-rc1
api-version: 1.19
load: POSTWORLD
commands:
Expand Down

0 comments on commit c3d3880

Please sign in to comment.