Rename bigmap-id enum entries (#3380)

also fixed some docstrings that were swapped
This commit is contained in:
Matt Dallmeyer
2024-02-23 11:46:57 -08:00
committed by GitHub
parent 7c223b1873
commit d5f92efcda
10 changed files with 368 additions and 368 deletions
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -374,7 +374,7 @@
;; WARN: Return type mismatch int vs none.
(defun palent-deactivate ()
"Sets [[palshaft.bigmap-id]] to `20`"
(set! (-> palshaft bigmap-id) (bigmap-id bigmap-id-20))
(set! (-> palshaft bigmap-id) (bigmap-id city))
0
(none)
)
@@ -383,7 +383,7 @@
;; WARN: Return type mismatch int vs none.
(defun palent-activate ()
"Sets [[palshaft.bigmap-id]] to `12`"
(set! (-> palshaft bigmap-id) (bigmap-id bigmap-id-12))
(set! (-> palshaft bigmap-id) (bigmap-id palent))
0
(none)
)
+4 -4
View File
@@ -444,8 +444,8 @@
;; definition for function palroof-deactivate
;; WARN: Return type mismatch int vs none.
(defun palroof-deactivate ()
"Sets [[palshaft.bigmap-id]] to `11` and [[*math-camera*.f]] to `20,000` meters"
(set! (-> palshaft bigmap-id) (bigmap-id bigmap-id-20))
"Sets [[palshaft.bigmap-id]] to `20` and [[*math-camera*.f]] to `10,000` meters"
(set! (-> palshaft bigmap-id) (bigmap-id city))
(set! (-> *math-camera* f) (meters 10000))
0
(none)
@@ -454,8 +454,8 @@
;; definition for function palroof-activate
;; WARN: Return type mismatch int vs none.
(defun palroof-activate ()
"Sets [[palshaft.bigmap-id]] to `20` and [[*math-camera*.f]] to `10,000` meters"
(set! (-> palshaft bigmap-id) (bigmap-id bigmap-id-11))
"Sets [[palshaft.bigmap-id]] to `11` and [[*math-camera*.f]] to `20,000` meters"
(set! (-> palshaft bigmap-id) (bigmap-id palcab))
(set! (-> *math-camera* f) (meters 20000))
0
(none)
+1 -1
View File
@@ -792,7 +792,7 @@
;; WARN: Return type mismatch int vs none.
(defun palshaft-deactivate ()
"Sets [[palshaft.bigmap-id]] to `20`"
(set! (-> palshaft bigmap-id) (bigmap-id bigmap-id-20))
(set! (-> palshaft bigmap-id) (bigmap-id city))
0
(none)
)