Skip to content

Commit f9c7471

Browse files
committed
Make NPCs not interact back when pickpocketing
1 parent 59b23c5 commit f9c7471

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/game/game/skill/thieving/pickpocketNpc/handlePickpocket.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ for (def in NpcDefinition.ALL) {
88
if (def != null && def.actions.contains("Pickpocket")) {
99
val thievable = ThievableNpc.NAME_TO_NPC[def.name]
1010
if (thievable != null) {
11-
npc2(def.id) {
11+
npc2(def.id, false) {
1212
plr.submitAction(PickpocketAction(plr, targetNpc, thievable))
1313
}
1414
}

0 commit comments

Comments
 (0)