steves-underwater-paradise / stevesrealisticsleep

Minecraft Fabric mod that makes sleeping speed up time instead of skipping to day.
https://www.curseforge.com/minecraft/mc-mods/stevesrealisticsleep
GNU Lesser General Public License v2.1
14 stars 10 forks source link

Exponential sleep doesn't work #71

Open leftbones opened 1 month ago

leftbones commented 1 month ago

Tested with one player online on my server. If set to linear, it works fine. If set to exponential, the timer always says 0s and time never speeds up. I do have many other mods on the server, but none that have anything to do with sleep or speeding up time, though if you want to see the full mod list, you can see them here: https://modrinth.com/modpack/evercraft/version/1.1.1

Here's my config:

{
  "showSleepVignette": true,
  "sendDawnMessage": true,
  "dawnMessage": "The morning sun has vanquished the horrible night.",
  "sendDuskMessage": true,
  "duskMessage": "What a horrible night to have a curse.",
  "sendSleepingMessage": true,
  "showTimeUntilDawn": true,
  "showTimeUntilDusk": true,
  "sendNotEnoughPlayersSleepingMessage": false,
  "allowDaySleeping": false,
  "sleepSpeedCurve": "LINEAR",
  "sleepSpeedMultiplier": 25.0,
  "blockEntityTickSpeedMultiplier": 1.0,
  "chunkTickSpeedMultiplier": 1.0,
  "raidTickSpeedMultiplier": 1.0,
  "fluidScheduledTickSpeedMultiplier": 1.0,
  "thunderTickSpeedMultiplier": 1.0,
  "iceAndSnowTickSpeedMultiplier": 1.0,
  "cropGrowthTickSpeedMultiplier": 1.0,
  "precipitationTickSpeedMultiplier": 1.0,
  "blockRandomTickSpeedMultiplier": 1.0,
  "fluidRandomTickSpeedMultiplier": 1.0,
  "worldRendererTickSpeedMultiplier": 1.0,
  "tickDelay": -1
}

EDIT: I should also note this is on Fabric, I didn't realize this mod was also available for Forge.

leftbones commented 1 month ago

Note that I set all of the multipliers aside from sleepSpeedMultiplier to 1.0 because ticking all of those things faster tends to lag my server for the players who aren't sleeping, so I like to avoid that.

Steveplays28 commented 1 month ago

Hi leftbones, thank you for the report. I'll take a look when I have time.