Configuration

# Settings for entire plugin
plugin:
  options:
# Whether or not the plugin is in debug mode
# Warning: lots of messages
    debug: false
# The worlds that the plugin runs on
    worlds:
    - world
# The default "world" the plugin checks if it
# can't find what it's looking for in another
# world.
default:
  options:
# Color of messages in world.
    color: AQUA
# Time of Minecraft day for day rollover.
# Sunrise: 23000 | Midday/Noon: 6000
# Sunset: 13000 | Midnight: 18000
    newdaytime: 18000
# The order for dates to be shown in
    displayFormat: '&W, &M &D, &Y'
# 12 or 24 hour
    timeFormat: 24
# Whether or not to use day suffixes
    useDaySuffix: true
# Use these if above is true
    daySuffixes:
    - th
    - st
    - nd
    - rd
  notifications:
# Notified of date when joining server
    onJoin: true
# Notified of date when new day
    onNewDay: true
# Notified of date when switching worlds
    onWorldChange: true
# Year settings
  year:
    currentYear: 0
# Month settings
  month:
    currentMonth: 0
# Names of the months
    monthNames:
    - January
    - February
    - March
    - April
    - May
    - June
    - July
    - August
    - September
    - October
    - November
    - December
# Day settings
  day:
    currentDay: 0
# Day names
    dayNames:
    - Sunday
    - Monday
    - Tuesday
    - Wednesday
    - Thursday
    - Friday
    - Saturday
# How many days per month?
# Must be divisible by amount
# of days in the list above.
    daysPerMonth: 35