Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit ba53ac3

Browse files
committed
Another adjustment
1 parent d6e9cf7 commit ba53ac3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

code/game/machinery/doors/door.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
return TRUE
247247
if(ispAI(M))
248248
var/mob/living/silicon/pai/P = M
249-
return !isnull(check_access(P.access_card))
249+
return check_access(P.access_card)
250250
return ..()
251251

252252
/// Returns the opposite of '/allowed', but makes exceptions for things like IsAdminGhost().

tgui/packages/tgui/interfaces/PaiInterface.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ const PaiBox = (props, context) => {
202202
custom_width = 960;
203203
break;
204204
case "security records":
205-
custom_width = 850;
205+
custom_width = 960;
206206
break;
207207
default:
208208
custom_width = 650;

0 commit comments

Comments
 (0)