1
Fork 0

Bump glass server & fix broken ptt formula

OOPS, I didn't realise integer division was a thing in nix
This commit is contained in:
prescientmoon 2025-06-12 11:56:28 +02:00
commit 5dea967383
Signed by: prescientmoon
SSH key fingerprint: SHA256:WFp/cO76nbarETAoQcQXuV+0h7XJsEsOCI0UsyPIy6U
2 changed files with 4 additions and 4 deletions
hosts/nixos/lapetus/services/glass-server
pkgs

View file

@ -66,8 +66,8 @@ let
SKILL_FATALIS_WORLD_LOCKED_TIME = 1; # Recover from Fatalis instantly
STEALTH_MODE_MAX_MEMS = 500;
PTT_FORMULA = [
(triplet "best" 30 (1 / 40))
(triplet "best" 10 (1 / 40))
(triplet "best" 30 (1.0 / 40))
(triplet "best" 10 (1.0 / 40))
];
CONTENT_BUNDLE_FOLDER_PATH = "${pkgs.shimmeringextra}/bundles";

View file

@ -17,8 +17,8 @@ pkgs.stdenv.mkDerivation {
src = pkgs.fetchFromGitHub {
owner = "starlitcanopy";
repo = "ArcaeaServerFork";
rev = "29f6361019b3747df4bd68d24ba3a7f4fc4d6a59";
sha256 = "JS2U9HLmjkR4xI8KuFnGS0lxWLH4WL0KX8lb5Sub7YE=";
rev = "d297e264b71befd2e5917ed39a028a64a792e8be";
sha256 = "SYHOqzXhrlLCRd9qjkcPCISjhbUvprXZRrZkXuscPPY=";
};
buildPhase = ''