Skip to content

Commit

Permalink
Fix missing quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
caligari87 committed Jun 6, 2019
1 parent 2164f65 commit fab0172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ai/bootstrap.zsc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class UaS_AI_Bootstrap : EventHandler {
override void WorldThingSpawned(WorldEvent e) {
if(!e.Thing) { return; }
if(!UaS_AdvancedAIEnabled) { return; }
if(e.Thing is HDMobBase) {
if(e.Thing is 'HDMobBase') {
e.thing.GiveInventory("UaS_AI_Handler", 1);
actor givenHandler = e.thing.FindInventory("UaS_AI_Handler");
givenHandler.score = givenAIHandlers;
Expand Down

0 comments on commit fab0172

Please sign in to comment.