Skip to content

Commit 4fd980e

Browse files
authored
Merge pull request #86 from rickfay/fix-ice-gimos
Fix Ice Gimos Fight logic
2 parents 388966d + 8586c18 commit 4fd980e

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

build.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
use std::env;
22
use std::io;
3-
use winres::WindowsResource;
3+
// use winres::WindowsResource;
44

55
fn main() -> io::Result<()> {
66
// Windows
77
if env::var_os("CARGO_CFG_WINDOWS").is_some() {
8-
let mut res = WindowsResource::new();
9-
res.set_icon("icon.ico");
10-
res.compile()?;
8+
// FIXME this is creating problems for some reason, commenting out until it can be fixed.
9+
// let mut res = WindowsResource::new();
10+
// res.set_icon("icon.ico");
11+
// res.compile()?;
1112
}
1213

1314
// macOS - todo

presets/Example.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
// "Visit the project GitHub for details about each option: https://github.com/rickfay/z17-randomizer/tree/dev#game-options"
33
"seed": 0,
4-
"version": "v0.4.0 - Beta Build 2024-12-02",
4+
"version": "v0.4.0 - Beta Build 2025-01-16",
55
"settings": {
66

77

randomizer/src/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Application Constants
22
33
/// Build Version
4-
pub const VERSION: &str = "v0.4.0 - Beta Build 2024-12-02";
4+
pub const VERSION: &str = "v0.4.0 - Beta Build 2025-01-16";
55
pub const CONFIG_FILE_NAME: &str = "config.json";

randomizer/src/world/lorule.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ pub(crate) fn graph(crack_map: &CrackMap) -> HashMap<Location, LocationNode> {
10371037
vec![
10381038
check!("Treacherous Tower Weather Vane", regions::lorule::death::mountain::SUBREGION),
10391039
check!("Ice Gimos Fight", regions::lorule::death::mountain::SUBREGION, |p| p
1040-
.can_defeat_margomill()),
1040+
.can_attack_iceproof()),
10411041
check!("Lorule Mountain W Ledge", regions::lorule::death::mountain::SUBREGION => {
10421042
normal: |p| p.can_merge(),
10431043
glitched: |p| p.has_nice_bombs(),

0 commit comments

Comments
 (0)