Skip to content

Commit

Permalink
fix: inconsistent language version in vane-bedtime fixed (fixes #114)
Browse files Browse the repository at this point in the history
  • Loading branch information
oddlama committed Feb 3, 2022
1 parent 4eef3e2 commit 18dd649
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import org.oddlama.vane.core.module.Module;
import org.oddlama.vane.util.Nms;

@VaneModule(name = "bedtime", bstats = 8639, config_version = 3, lang_version = 3, storage_version = 1)
@VaneModule(name = "bedtime", bstats = 8639, config_version = 3, lang_version = 5, storage_version = 1)
public class Bedtime extends Module<Bedtime> {

// One set of sleeping players per world, to keep track
Expand Down
2 changes: 1 addition & 1 deletion vane-bedtime/src/main/resources/lang-de.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# DO NOT CHANGE! The version of this language file. Used to determine
# if the file needs to be updated.
version: 3
version: 5
# The corresponding language code used in resource packs. Used for
# resource pack generation. Typically this is a combination of the
# language code (ISO 639) and the country code (ISO 3166).
Expand Down
2 changes: 1 addition & 1 deletion vane-bedtime/src/main/resources/lang-en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# DO NOT CHANGE! The version of this language file. Used to determine
# if the file needs to be updated.
version: 3
version: 5
# The corresponding language code used in resource packs. Used for
# resource pack generation. Typically this is a combination of the
# language code (ISO 639) and the country code (ISO 3166).
Expand Down
2 changes: 1 addition & 1 deletion vane-bedtime/src/main/resources/lang-fr-fr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# DO NOT CHANGE! The version of this language file. Used to determine
# if the file needs to be updated.
version: 4
version: 5
# The corresponding language code used in resource packs. Used for
# resource pack generation. Typically this is a combination of the
# language code (ISO 639) and the country code (ISO 3166).
Expand Down
2 changes: 1 addition & 1 deletion vane-bedtime/src/main/resources/lang-ru.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# DO NOT CHANGE! The version of this language file. Used to determine
# if the file needs to be updated.
version: 3
version: 5
# The corresponding language code used in resource packs. Used for
# resource pack generation. Typically this is a combination of the
# language code (ISO 639) and the country code (ISO 3166).
Expand Down

0 comments on commit 18dd649

Please sign in to comment.