Skip to content

Commit

Permalink
fix vulture scope build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mullenpaul committed Jan 21, 2024
1 parent a922d83 commit 707f358
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tgui/packages/tgui/interfaces/VultureScope.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import { Box, Button, Flex, Stack, Icon, Section, ProgressBar } from '../compone
import { Window } from '../layouts';

type ScopeData = {
offset_x: Number;
offset_y: Number;
offset_x: number;
offset_y: number;
valid_offset_dirs: Array<String>;
valid_adjust_dirs: Array<String>;
scope_cooldown: BooleanLike;
breath_cooldown: BooleanLike;
breath_recharge: Number;
current_scope_drift: Number;
time_to_fire_remaining: Number;
breath_recharge: number;
current_scope_drift: number;
time_to_fire_remaining: number;
};

enum Direction {
Expand Down

0 comments on commit 707f358

Please sign in to comment.