You should consider joining our Discord to ask for support.

We created a support channel using the new Discord Forum feature!

You can also visit our new website, it has a help section in English and French

0 like 0 dislike
412 views
in Script help by (160 points)

1 Answer

1 like 0 dislike
by (14.8k points)
selected by
 
Best answer

You'll have to monkey patch the MIN_FRAMES constant in the pokemonsdk\scripts\01500 Yuki\00600 Yuki__TJN.rb script. 

By monkey patching I mean you must not edit it in the this file but create a new script in the your_project_folder/scripts folder with this:

module Yuki
  # PSDK DayNightSystem v2
  # @author Nuri Yuri
  module TJN
remove_const :MIN_FRAMES
    # The number of frame that makes 1 minute in Game time
    MIN_FRAMES = 600
end
end
by (160 points)
Yup, that did it. thanks!
...