Disable wierd fog effect

Started by ADemobird on

Topic category: Help with modding (Java Edition)

Last seen on 21:32, 26. Jul 2022
Joined Jan 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Disable wierd fog effect

Ive been making a mod, and i decided to add a custom dimension. but sometimes when i look around the fog colour turns from my intended black colour to a red/orange/yellow colour. Is it possible to disable this and does anyone know how???

Last seen on 13:02, 31. May 2024
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
this has happened to me many…
Tue, 01/18/2022 - 01:51

this has happened to me many times, the best way to combat this is to make a procedure when the player enters the dimension to make it midnight, and change dodaylight cycle to false. and when the player leaves use the execute command to change dodaylight cycle to true.

------When player enters dimension

execute command gamerule DoDaylightCycle false

set time 18000

------When player leaves dimension

execute command gamerule DoDaylightCycle false

i hope you understand my messy typing

Last seen on 21:32, 26. Jul 2022
Joined Jan 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
that could work, but only in…
Fri, 01/21/2022 - 22:07

that could work, but only in singleplayer. i started making this mod mostly to play with friends, but others could play it aswell

Last seen on 13:02, 31. May 2024
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Well thats all i have for…
Wed, 01/26/2022 - 10:53

Well thats all i have for now, maybe in 1.18 update or earlier they'll fix it.