瀏覽代碼

[fixed] booty call date planning was using wrong variables

hornguy6 1 年之前
父節點
當前提交
5612f958c2
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      locations/booty_call.qsrc

+ 4 - 4
locations/booty_call.qsrc

@@ -53,9 +53,9 @@ end
 !!				booty_call_time[$FuckBuddy[i]] = 600 + rand(0,720)
 
 if $ARGS[0] = 'set_booty_call_date':
-	if booty_call['invite_today'] = 1:
+	if sex_ev['invite_today'] = 1:
 		npc_booty_call_date[$boy] = daystart
-	elseif booty_call['invite_tomorrow'] = 1:
+	elseif sex_ev['invite_tomorrow'] = 1:
 		npc_booty_call_date[$boy] = daystart + 1
 	end
 	if npc_booty_call_time[$boy] = 0:
@@ -64,11 +64,11 @@ if $ARGS[0] = 'set_booty_call_date':
 end
 
 if $ARGS[0] = 'block_booty_calls':
-	if booty_call['invite_today'] = 1:
+	if sex_ev['invite_today'] = 1:
 		npc_booty_call_date[$boy] = 0
 		npc_no_booty_call[$boy] = daystart
 		npc_booty_call_time[$boy] = 0
-	elseif booty_call['invite_tomorrow'] = 1:
+	elseif sex_ev['invite_tomorrow'] = 1:
 		npc_no_booty_call[$boy] = daystart + 1
 	end
 end