ソースを参照

[fixed] syntax errors from earlier commits

Spackled Lanturn 3 年 前
コミット
d6ba22bd13
2 ファイル変更4 行追加4 行削除
  1. 1 1
      locations/etoexhib.qsrc
  2. 3 3
      locations/uniutil.qsrc

+ 1 - 1
locations/etoexhib.qsrc

@@ -789,7 +789,7 @@ if $ARGS[0] = 'pos19' or $ARGS[0] = '':
 						end
 					end
 				else:
-					'You are told that you cannot take the job without a diploma from an institute of higher  education.'
+					'You are told that you cannot take the job without a diploma from an institute of higher education.'
 					gs 'uniutil', 'fake_diploma', 'set_aware_needed'
 				end
 

+ 3 - 3
locations/uniutil.qsrc

@@ -302,15 +302,15 @@ if $ARGS[0] = 'fake_diploma':
 	end
 
 	if $ARGS[1] = 'aware_needed':
-		RESULT = func('uniutil', 'student', 'get_fake_diploma_status') = 2
+		RESULT = func('uniutil', 'fake_diploma', 'get') = 2
 	end
 
 	if $ARGS[1] = 'obtained':
-		RESULT = func('uniutil', 'student', 'get_fake_diploma_status') = 1
+		RESULT = func('uniutil', 'fake_diploma', 'get') = 1
 	end
 end
 
-$ARGS[0] = 'appear_to_have_graduated':
+if $ARGS[0] = 'appear_to_have_graduated':
 	RESULT = func('uniutil', 'diploma', 'obtained') or func('uniutil', 'fake_diploma', 'obtained')
 end