Difference between revisions of "User:Zesty"

From RimWorld Wiki
Jump to navigation Jump to search
(contact info updated)
 
(50 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
I'm the RimWorld Wiki assistant admin. Message me if you've got questions or things break.
 
I'm the RimWorld Wiki assistant admin. Message me if you've got questions or things break.
  
If you need to reach me, you can do so via [https://steamcommunity.com/id/Divaya Steam]or on the [https://ludeon.com/forums/index.php?action=profile;u=7108 Ludeon forums].
+
The best place to reach me is with an @ message via [https://discordapp.com/invite/UTaMDWc The RimWorld Discord] (@cawsforconcern), or on my [https://rimworldwiki.com/wiki/User_talk:Zesty User Talk Page].
  
==Test Area==
 
{{Define|Plant
 
| category = Plants
 
| description = A simple, highly nutritious tuber. Grows well even in somewhat poor soil. Harvests quickly. A strong, versatile crop.
 
| def name = PlantPotato
 
| default color = (255,255,255)
 
| graphic class = Graphic_Random
 
| graphic path = Things/Plant/PotatoPlant
 
| label = potato plant
 
| parent name = PlantBase
 
| path cost = 10
 
| rotatable = false
 
| selectable = true
 
| use hit points = true
 
| health = 100
 
| beauty factor = 1
 
| flammability factor = 0.2
 
| max hit points factor = 1
 
}}
 
  
{{Info|The '''Potato Plant''' is ideal for growing in soil with poor fertility as a substitute to the [[Rice Plant|rice plant]]. It is quick to grow and produces a large amount of food. It can be planted in the [[growing area|growing area]] or [[hydroponics basin|hydroponics basin]]. Yields 4 [[food|food]] at 100% growth. Requires 3.15 days with full light in optimal temperature range to reach maturity. }}
+
== Test Zone ==
 +
{{key|S}}, {{key|}}
  
 +
Taking a look at syntax highlighting always citing it has errors
  
{{nav|plant|wide}}
+
‎<syntaxhighlight lang="python" line>
[[Category:Domesticated plants]]
+
def quick_sort(arr):
 +
less = []
 +
pivot_list = []
 +
more = []
 +
if len(arr) <= 1:
 +
return arr
 +
else:
 +
pass
 +
‎</syntaxhighlight>

Latest revision as of 22:43, 30 April 2024

I'm the RimWorld Wiki assistant admin. Message me if you've got questions or things break.

The best place to reach me is with an @ message via The RimWorld Discord (@cawsforconcern), or on my User Talk Page.


Test Zone[edit]

S,

Taking a look at syntax highlighting always citing it has errors

def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass
‎