summary refs log tree commit diff
path: root/src/config.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.zig')
-rw-r--r--src/config.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/config.zig b/src/config.zig
index d561244..0d18223 100644
--- a/src/config.zig
+++ b/src/config.zig
@@ -134,7 +134,6 @@ pub const Config = extern struct {
         aim: Key = .E,
         psychic_aim: Key = .Q,
         psychic: Key = .Z,
-        laser_sight: Key = .L,
 
         switch_view: Key = .TAB,
         switch_weapon: Key = .X,
@@ -207,8 +206,6 @@ pub fn parse(base_dir: []const u8) !Config {
                     config.key.psychic_aim = stringToEnum(Key, kv.value).?
                 else if (eql(u8, kv.key, "psychic key"))
                     config.key.psychic = stringToEnum(Key, kv.value).?
-                else if (eql(u8, kv.key, "laser sight key"))
-                    config.key.laser_sight = stringToEnum(Key, kv.value).?
                 else if (eql(u8, kv.key, "switch view key"))
                     config.key.switch_view = stringToEnum(Key, kv.value).?
                 else if (eql(u8, kv.key, "switch weapon key"))